Docs/Pair / Pool/Pair OHLCV
Pair OHLCV
GET/v1/pair/{address}/ohlcvPublic
OHLCV candles for ONE pool, aggregated on the fly from the pool's swaps (Birdeye /ohlcv/pair).
Unlike token OHLCV, this does NOT drop satellite-pool trades — it's the pool's own view, so a small pool still charts its real activity.
Path parameters
| Field | Type | Description |
|---|
addressrequired | string | Pool / market address. |
Query parameters
| Field | Type | Description |
|---|
intervaloptional | string | Candle interval (see Intervals & candles). default 1m |
fromoptional | number (unix s) | Window start (default: 30 days ago). |
tooptional | number (unix s) | Window end (default: now). |
limitoptional | number | Max candles (≤1000), newest last. default 500 |
networkoptional | mainnet | devnet | Network to read. Devnet returns an empty payload (with a note) until its ingestor lands. default mainnet |
Response fields
| Field | Type | Description |
|---|
data[].t | number | Candle open time (unix seconds). |
data[].o/h/l/c | string | Open, high, low, close (USD). |
data[].v | string | USD volume in the bucket. |
data[].trades | number | Swap count in the bucket. |