Docs/Token data/Price history

Price history

GET/v1/token/{mint}/price-historyPublic

A lightweight price line ({ unixTime, value }) from candle closes — for sparklines & valuation.

Path parameters

FieldTypeDescription
mintrequiredstringToken mint address (base58).

Query parameters

FieldTypeDescription
intervaloptionalstringCandle interval (see Intervals & candles). default 1m
fromoptionalnumber (unix s)Window start.
tooptionalnumber (unix s)Window end.
limitoptionalnumberMax points (≤1000). Newest last. default 500
networkoptionalmainnet | devnetNetwork to read. Devnet returns an empty payload (with a note) until its ingestor lands. default mainnet

Response fields

FieldTypeDescription
items[].unixTimenumberBucket time (unix seconds).
items[].valuenumberClose price (USD).
widenedbooleanTrue if we fell back to the latest N when the window was empty.