Usage
Request Token List JSON
Access the latest published token list JSON.
Token List vs Currencies API
Use the token list for static token metadata and broad catalog browsing. Use the Currencies API when you need runtime filtering by network/symbol/id or conversion-route discovery.GET /v2/currencies
Query currencies with optional filters (
network, symbol, id).GET /v2/currencies/{currencyId}/conversion-routes
Fetch payment currencies available for a specific invoice currency.
Token List Structure
Each token in the list contains the following information:| Field | Description |
|---|---|
id | Unique identifier, typically SYMBOL-network (e.g., USDC-mainnet) |
name | Human-readable token name |
symbol | Token symbol |
decimals | Number of decimal places |
address | Token contract address |
network | Network name (e.g., mainnet, matic, bsc, tron) |
type | Currency type (e.g., ERC20, ETH, ISO4217) |
hash | For ERC20 tokens, same as address. For native tokens, a calculated hash. |
chainId | Chain ID of the network |
Adding a New Token
We welcome community contributions! To add a new token to the list:Fork the request-token-list repository on Github
Make sure your token meets our requirements (see CONTRIBUTING.md)