# Get positions of pool

## Function

clmmpool/sources/position.move

```rust
/// To fetch all positions in the pools using pagination.
/// Params
///     - pool: The CLMM pool.
///     - start: Utilizes a vector to represent the range of options.
///     - limit: Specifies the maximum number of positions to fetch.
/// Returns
///     - `vector<PositionIngo>` Position info array.
public fun fetch_positions(
    pool: &Pool<CoinTypeA, CoinTypeB>, start: vector<ID>, limit: u64
): vector<PositionInfo> {
    ///
}
```


---

# 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://cetus-1.gitbook.io/cetus-developer-docs/developer/via-clmm-contract/features-available/get-positions-of-pool.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.
