Token Information
Use the TokenInformation endpoints to retrieve detailed metadata about a token�whether it�s a cryptocurrency or fiat. These details include its name, symbol, market cap, description, rank, and associated networks (if applicable).
Endpoint Overview
Method | Endpoint | Description |
---|---|---|
GET | /v1/tokeninformation/{tokenId} |
Retrieves detailed information for a token by ID. |
GET | /v1/tokeninformation/symbols/{symbol} |
Retrieves token details identified by ticker symbol. |
Notes
- Cryptocurrency tokens will typically include fields like
marketCap
,description
,rank
, andnetworks
. - Fiat currencies may only show limited data, such as
symbol
andlogoURL
, and will haveisFiat: true
. - The
networks
array (for crypto) indicates on which blockchains the token is available (isAvailable
= true).
Example: Crypto Token
Request
GET /v1/tokeninformation/38105
(or GET /v1/tokeninformation/symbols/SOL
)
Response
{
"data": {
"tokenId": 38105,
"name": "Solana",
"symbol": "SOL",
"marketCap": 68434965207.68254,
"description": "Solana (SOL) is a cryptocurrency launched in 2020...",
"logoURL": "https://s2.coinmarketcap.com/static/img/coins/64x64/5426.png",
"website": "https://solana.com",
"rank": 6,
"dilutedMarketCap": 83260303222.58763,
"aioConnectedExchanges": 12,
"networks": [
{
"network": "SPL",
"networkName": "Solana",
"contractAddress": "SOLANA",
"isAvailable": true
}
],
"isFiat": false
},
"success": true,
"timestamp": 1740657339292,
"requestId": "7058b5fc-37ef-44ea-8546-53cfbf1bc494",
"message": ""
}
Example: Fiat Currency
Request
GET /v1/tokeninformation/19590
(or GET /v1/tokeninformation/symbols/USD
)
Response
{
"data": {
"tokenId": 19590,
"name": "United States Dollar",
"symbol": "USD",
"logoURL": "https://s2.coinmarketcap.com/static/img/coins/64x64/2781.png",
"isFiat": true
},
"success": true,
"timestamp": 1740657214057,
"requestId": "39e3a914-7003-45f7-b679-fc88a52203ba",
"message": ""
}
Tip: Use these endpoints to confirm if a particular symbol or token ID refers to a fiat currency or a crypto token, and to discover which networks a crypto token supports (
networks
array).