v8

latestOpenAPI 3.1.1raw.githubusercontent.com2026-08-01124480.3 KB
V1

List supported tokens grouped by chain ID

Returns supported tokens grouped by chain ID. Use chains to limit the response to specific chain IDs and chainTypes to filter by EVM or SVM networks.

get/v1/tokens

Query parameters

chainsstring
Example:8453,1

Comma-separated chain IDs used to filter tokens.

chainTypesstring
Example:EVM,SVM

Comma-separated chain types to include. Supported values: EVM, SVM.

Headers

x-api-keystring

Optional API key for higher rate limits and fee rules.

Response

Tokens grouped by chain ID.

object required

Example response

{
  "8453": [
    {
      "address": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "symbol": "USDC",
      "decimals": 6,
      "chainId": 8453,
      "name": "USD Coin",
      "coinKey": "USDC"
    }
  ]
}