Docs/Token data/OHLCV candles
OHLCV candles
GET/v1/token/{mint}/ohlcvPublic
Reconciled OHLCV candles for any timeframe — the data behind the chart. Newest candles last.
Path parameters
| Field | Type | Description |
|---|
mintrequired | string | Token mint address (base58). |
Query parameters
| Field | Type | Description |
|---|
intervaloptional | string | One of the supported intervals (sub-minute needs a paid plan). default 1m |
fromoptional | number (unix s) | Window start. |
tooptional | number (unix s) | Window end. |
limitoptional | number | Max candles (≤1000). 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 | Quote volume in USD. |
data[].trades | number | Swap count in the bucket. |
data[].confirmed | boolean | True once reconciled vs the archive. |