Pools API
Query information about V3 liquidity pools.GET /api/v1/pools/v3/find
Find all V3 pools for a specific token pair (one per fee tier).Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
token0 | string | Yes | First token address |
token1 | string | Yes | Second token address |
Response
GET /api/v1/pools/:address/liquidity-distribution
Get the tick-level liquidity distribution for a V3 pool. Used to render depth charts.Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
address | string (path) | Yes | V3 pool address |
Response
| Field | Description |
|---|---|
tick | Tick index where liquidity changes |
liquidityGross | Total liquidity referencing this tick |
liquidityNet | Net liquidity change when crossing this tick (positive = add, negative = remove) |
Additional Pool Endpoints
| Endpoint | Description |
|---|---|
GET /api/v1/pools/:address/price | Current pool price |
GET /api/v1/pools/:address/tvl | Total value locked |
GET /api/v1/pools/:address/volume | Trading volume |
GET /api/v1/pools/:address/apr | Annual percentage rate |
GET /api/v1/pools/:address/positions | Active positions |
GET /api/v1/pools/:address/tick-liquidity | Raw tick liquidity data |