Aqua0
API ReferencePools

Get committed JIT depth per tick range for a pool (both token sides)

Aggregates the active LP JIT range preferences for one pool into per-tick-range committed depth, summing each token side independently. This is Aqua0's own committed JIT liquidity (labeled source: 'aqua-committed-jit'), not the pool's total liquidity across all LPs.

GET
/api/vaults/pools/{chainId}/{poolId}/range-depth

Authorization

ApiKeyAuth
X-API-Key<token>

In: header

Path Parameters

chainId*string

Numeric ID of the chain to query or act on.

poolId*string

The pool's 32-byte identifier (Uniswap v4 PoolId).

Response Body

application/json

curl -X GET "https://example.com/api/vaults/pools/string/string/range-depth"
{  "chainId": 0,  "poolId": "string",  "token0": "string",  "token1": "string",  "source": "aqua-committed-jit",  "ranges": [    {      "tickLower": 0,      "tickUpper": 0,      "depth0": "string",      "depth1": "string",      "lpCount": 0    }  ],  "updatedAt": "string"}