V1
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.
get/v1/prices
Query parameters
chainIdstring
Example:8453
Chain ID for a single token price lookup. Required with token when tokens is not provided.
tokenstring
Example:0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913
Token address or symbol for a single token price lookup. Required with chainId when tokens is not provided.
tokensstring
Example:8453:0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913,1:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48
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
x-api-keystring
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"
}
]
}