Skip to main content

Usage

Request Token List JSON

Access the latest published token list JSON.
You can fetch the token list directly in your application:

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:
Tron tokens use the same shape — network: "tron", chainId: 728126428, type: "TRC20", and base58 addresses (T...):

Adding a New Token

We welcome community contributions! To add a new token to the list:
1
Fork the request-token-list repository on Github
2
Add your token information to tokens/token-list.json
3
Make sure your token meets our requirements (see CONTRIBUTING.md)
4
Run tests locally: npm test
5
Create a Pull Request