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
| Field | Type | Description |
|---|
mintrequired | string | Token mint address (base58). |
Query parameters
| Field | Type | Description |
|---|
intervaloptional | string | Candle interval (see Intervals & candles). default 1m |
fromoptional | number (unix s) | Window start. |
tooptional | number (unix s) | Window end. |
limitoptional | number | Max points (≤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 |
|---|
items[].unixTime | number | Bucket time (unix seconds). |
items[].value | number | Close price (USD). |
widened | boolean | True if we fell back to the latest N when the window was empty. |