get-cl-pool-liquidity
Query liquidity depth and distribution for a specific Concentrated Liquidity (CL) pool on Osmosis. Use pool ID and optional tick bounds to analyze pool performance and liquidity allocation.
Instructions
Returns liquidity depth and distribution for a CL pool
Input Schema
Name | Required | Description | Default |
---|---|---|---|
poolId | Yes | The CL pool ID | |
tickLower | No | Optional: lower tick bound to query | |
tickUpper | No | Optional: upper tick bound to query |
Input Schema (JSON Schema)
{
"properties": {
"poolId": {
"description": "The CL pool ID",
"type": "string"
},
"tickLower": {
"description": "Optional: lower tick bound to query",
"type": "number"
},
"tickUpper": {
"description": "Optional: upper tick bound to query",
"type": "number"
}
},
"required": [
"poolId"
],
"type": "object"
}