Get token price snapshots
Returns cached token price snapshots for one token or up to 50 requested token entries. Stale prices are returned immediately and marked with stale and refreshing metadata when a background refresh is scheduled.
Query parameters
Chain ID for a single token price lookup. Required with token when tokens is not provided.
Token address or symbol for a single token price lookup. Required with chainId when tokens is not provided.
Comma-separated batch of chainId:token entries. Maximum 50 requested entries. When provided, tokens is used instead of the single-token chainId and token parameters.
Headers
Optional API key for higher rate limits and fee rules.
Response
Token price snapshot response.
Example response
{
"prices": [
{
"chainId": 8453,
"token": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"priceUSD": "1.00",
"source": "dexscreener",
"updatedAt": "2026-06-22T12:00:00.000Z",
"tier": "hot"
}
]
}Changes
Changed in 2 of the 8 revisions of this API.41
- ●
added the new
AMOUNT_TOO_LOWenum value to thecoderesponse property for the response status400response-property-enum-value-added
- ●
added the new
AMOUNT_TOO_LOWenum value to thecoderesponse property for the response status429response-property-enum-value-added
- ●
added the new
SLIPPAGE_EXCEEDEDenum value to thecoderesponse property for the response status400response-property-enum-value-added
- ●
added the new
SLIPPAGE_EXCEEDEDenum value to thecoderesponse property for the response status429response-property-enum-value-added
- ●
- ○
endpoint added
endpoint-added
- ○