> For the complete documentation index, see [llms.txt](https://centr.gitbook.io/netcs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://centr.gitbook.io/netcs/api/functions/poolinfoget.md).

# PoolInfoGet()

Before calling the function make sure you have the Connector object initialized.&#x20;

{% content-ref url="/pages/-MgM38pBUeXL96\_AW6Jy" %}
[Understanding Connector Object](/netcs/getting-started/understanding-connector-object.md)
{% endcontent-ref %}

## Function Call&#x20;

| Field      | Type     | Description                                                            |
| ---------- | -------- | ---------------------------------------------------------------------- |
| `Sequence` | ​`long`​ | Offset enables you to search 10 Transactions later or any given number |
| `Limit`    | `int`    | Limit Amount per request                                               |

```csharp
PoolInfoGet(0, 10);
```

{% hint style="info" %}
Return value of function: [PoolInfoGetResult](/netcs/api/result-types/poolinfogetresult.md)
{% endhint %}

## Example

{% tabs %}
{% tab title="C#" %}

```csharp
Connector connect_ = new Connector("95.111.224.219", 9091);
NodeApi.PoolListGetResult PoolInfo = connect_.PoolInfoGet(0, 10);
Console.WriteLine(PoolInfo);
```

{% endtab %}

{% tab title="Python" %}

```python
Connect_ =  Connector("165.22.212.253:9090")
print(Connect_.PoolInfoGet(0,5))
```

{% endtab %}

{% tab title="Javascript" %}

```javascript
var connect_ = new Connector("194.163.152.177", 9091);
connect_.PoolInfoGet(0,10).then((res) => {connect_.Close();console.log(res); });
```

{% endtab %}
{% endtabs %}

{% hint style="info" %}
Return value of function: [PoolInfoGetResult](/netcs/api/result-types/poolinfogetresult.md)
{% endhint %}

#### Output of Example

Output is printed via ObjectDumper

```scheme
{PoolInfoGetResult}
  Status: {APIResponse}
    Code: 0
    Message: "Success: "
  IsFound: true
  Pool: {Pool}
    Hash: ...
    PrevHash: ...
    Time: 0
    TransactionsCount: 1
    PoolNumber: 0
    Writer: ...
    TotalFee: {Amount}
      Integral: 0
      Fraction: 0
    Confidants: ...
    RealTrusted: 0
    NumberTrusted: 0
```
