Skip to main content
GET
/
chains
/
tokens
/
all
Get all supported tokens
curl --request GET \
  --url https://api.chainrails.io/api/v1/chains/tokens/all \
  --header 'Authorization: Bearer <token>'
[
  {
    "symbol": "USDC",
    "decimals": 6,
    "name": "USD Coin",
    "category": "stablecoin"
  },
  {
    "symbol": "ETH",
    "decimals": 18,
    "name": "Ethereum",
    "category": "major"
  }
]

Authorizations

Authorization
string
header
required

Enter your Chainrails API key as a Bearer token

Response

Supported tokens retrieved successfully

symbol
string
Example:

"USDC"

decimals
number
Example:

6

name
string
Example:

"USD Coin"

category
enum<string>
Available options:
stablecoin,
major,
volatile
Example:

"stablecoin"

Example:
[
  {
    "symbol": "USDC",
    "decimals": 6,
    "name": "USD Coin",
    "category": "stablecoin"
  },
  {
    "symbol": "ETH",
    "decimals": 18,
    "name": "Ethereum",
    "category": "major"
  }
]