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

FieldTypeDescription
mintrequiredstringToken mint address (base58).

Query parameters

FieldTypeDescription
intervaloptionalstringOne of the supported intervals (sub-minute needs a paid plan). default 1m
fromoptionalnumber (unix s)Window start.
tooptionalnumber (unix s)Window end.
limitoptionalnumberMax candles (≤1000). default 500
networkoptionalmainnet | devnetNetwork to read. Devnet returns an empty payload (with a note) until its ingestor lands. default mainnet

Response fields

FieldTypeDescription
data[].tnumberCandle open time (unix seconds).
data[].o/h/l/cstringOpen, high, low, close (USD).
data[].vstringQuote volume in USD.
data[].tradesnumberSwap count in the bucket.
data[].confirmedbooleanTrue once reconciled vs the archive.
indexedbooleanPresent (false) only when data is empty because the mint was never indexed (vs an indexed mint with an empty window).
notestringHonest-empty hint (unindexed mint → POST /v1/tokens/register pointer; or the devnet note).