get-cl-positions-by-pool
Retrieve all positions within a specific Concentrated Liquidity (CL) pool on the Osmosis blockchain by specifying the pool ID and limit. Facilitates detailed analysis and management of liquidity positions.
Instructions
Returns all positions in a specific CL pool
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of positions to return (default: 100) | |
poolId | Yes | The CL pool ID |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "Maximum number of positions to return (default: 100)",
"maximum": 500,
"minimum": 1,
"type": "number"
},
"poolId": {
"description": "The CL pool ID",
"type": "string"
}
},
"required": [
"poolId"
],
"type": "object"
}