Skip to main content

Token prices by address

GET 

/v1/data/token/prices

Returns per-address USD prices for the given asset addresses on a chain.

How it works:

  1. Resolves each address to its asset group via the token list
  2. Looks up the latest USD price for each asset group
  3. Returns a map of address → price

Query format:

  • assets: Comma-separated list of EVM addresses (0x-prefixed, 40 hex chars)

Response Structure:

  • items: Object mapping lowercase addresses to their USD price (0 if unknown)
  • count: Number of resolved assets
Plain-text reference — GET /v1/data/token/prices

Parameters

ParameterInTypeRequiredDescription
chainIdquerystringyesChain ID See the ChainId schema for the full set of supported chains.
assetsquerystringyesComma-separated list of token addresses

Response 200

FieldTypeDescription
successTrue
dataobject
data.chainIdstringEVM chain id, as a decimal string. See the ChainId schema.
data.countintegerNumber of resolved assets
data.itemsobjectMap of lowercase address → USD price
actionsnull

Example response

{
"success": true,
"data": {
"chainId": "1",
"count": 1,
"items": {
"0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48": 1,
"0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2": 3500.12
}
}
}

Request

Responses

Per-address USD prices