Skip to main content

Get token list for a chain

GET 

/v1/data/token/list

Fetches the complete token list for a given chain, including metadata such as symbol, name, decimals, and asset group.

Response Structure:

  • tokens: Object keyed by token address (lowercase) containing token metadata
  • count: Total number of tokens in the list

Token Metadata includes:

  • symbol: Token symbol (e.g., "USDC")
  • name: Full token name (e.g., "USD Coin")
  • decimals: Token decimals (e.g., 6 for USDC)
  • assetGroup: Asset grouping for price lookups
  • logoURI: Optional logo URL
Plain-text reference — GET /v1/data/token/list

Parameters

ParameterInTypeRequiredDescription
chainIdquerystringyesChain ID to fetch token list for See the ChainId schema for the full set of supported chains.

Response 200

FieldTypeDescription
successTrue
dataobject
data.chainIdstringEVM chain id, as a decimal string. See the ChainId schema.
data.countintegerTotal number of tokens
data.tokensobjectMap of token address (lowercase) → token metadata
actionsnull

Example response

{
"success": true,
"data": {
"chainId": "1",
"count": 1,
"tokens": {}
}
}

Request

Responses

Token list for the chain