v1

latestOpenAPI 3.1.02026-07-13570316.1 KB
Tokens

List Tokens

Lists or search existing tokens based on the provided filters. Supports querying by chain ID, token address, symbol, and/or name.

Authentication: Pass x-client-id header for frontend usage from allowlisted origins or x-secret-key for backend usage.

get/v1/tokens

Query parameters

limitinteger

Number of tokens to return per page (1-100).

Number of tokens to return per page (1-100).

pageinteger

Page number for pagination, starting from 1.

Page number for pagination, starting from 1.

chainIdinteger

Limit tokens to a specific chain.

Example:1

Limit tokens to a specific chain.

tokenAddressstring

Get a specific token by contract address

Get a specific token by contract address

symbolstring

Limit tokens to a specific symbol.

Limit tokens to a specific symbol.

namestring

Limit tokens to a specific name.

Limit tokens to a specific name.

Response

Tokens returned successfully.

Example response

{
  "tokens": [
    {
      "chainId": 1,
      "prices": {
        "USD": 1,
        "EUR": 0.84
      }
    }
  ]
}