# PoolListGetStable()

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

{% content-ref url="../../getting-started/understanding-connector-object" %}
[understanding-connector-object](https://centr.gitbook.io/netcs/getting-started/understanding-connector-object)
{% endcontent-ref %}

## Function Call&#x20;

| Field      | Type     | Description                        |
| ---------- | -------- | ---------------------------------- |
| `Sequence` | ​`long`​ | Pool Sequence Number(Round Number) |
| `Limit`    | `int`    | Limit Amount per request           |

```csharp
PoolListGetStable(424078, 0);
```

{% hint style="info" %}
Return value of function: [PoolListGetResult](https://centr.gitbook.io/netcs/api/result-types/poollistgetresult)
{% endhint %}

## Example

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

```csharp
Connector connect_ = new Connector("95.111.224.219", 9091);
NodeApi.PoolListGetResult PoolListStable = connect_.PoolListGetStable(1451686, 10);
Console.WriteLine(PoolListStable);
```

{% endtab %}

{% tab title="Python" %}

```python
Connect_ =  Connector("165.22.212.253:9090")
print(Connect_.PoolListGetStable(5500,5))
```

{% endtab %}

{% tab title="Javascript" %}

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

{% endtab %}
{% endtabs %}

{% hint style="info" %}
Return value of function: [PoolListGetResult](https://centr.gitbook.io/netcs/api/result-types/poollistgetresult)
{% endhint %}

#### Output of Example

Output is printed via ObjectDumper

```scheme
{PoolListGetResult}
  Status: {APIResponse}
    Code: 0
    Message: ""
  Result: false
  Count: 1451687
  Pools: ...
    {Pool}
      Hash: ...
      PrevHash: ...
      Time: 1628884612918
      TransactionsCount: 0
      PoolNumber: 1451686
      Writer: ...
      TotalFee: {Amount}
        Integral: 0
        Fraction: 0
      Confidants: ...
        ...
          
        ...
          
        ...
          
        ...
          
        ...
          
      RealTrusted: 31
      NumberTrusted: 5
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://centr.gitbook.io/netcs/api/functions/poollistgetstable.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
