Skip to content

Token Information

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.

Retrieve Token Information

Try itPlayground

/v1/tokeninformation/{tokenId}
/v1/tokeninformation/symbols/{symbol}

Purpose:
Retrieves detailed information about a specific token—crypto or fiat. Including live data, as well as individual metadata such as logo and website.

Fiat Token Response

  • Cryptocurrency tokens will include fields like marketCap, description, rank, and networks.
  • Fiat currencies only show limited data, such as symbol and logoURL, and will have isFiat: true.

Path Parameters (by Token ID):

Name Type Mandatory Description
tokenId number Yes Token ID of the crypto or fiat token.

Path Parameters (by Symbol):

Name Type Mandatory Description
symbol string Yes Symbol of the crypto or fiat token (e.g., SOL, USD).

Example Requests

http
GET /v1/tokeninformation/38105
GET /v1/tokeninformation/symbols/SOL
GET /v1/tokeninformation/19590
GET /v1/tokeninformation/symbols/USD

Example Response (Crypto Token)

json
{
  "data": {
    "tokenId": 38105,
    "name": "Solana",
    "symbol": "SOL",
    "marketCap": 68434965207.68254,
    "description": "Solana (SOL) is a cryptocurrency launched in 2020...",
    "logoURL": "https://aioexchange.s3.eu-west-1.amazonaws.com/logo/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 Response (Fiat Token)

json
{
  "data": {
    "tokenId": 19590,
    "name": "United States Dollar",
    "symbol": "USD",
    "logoURL": "https://aioexchange.s3.eu-west-1.amazonaws.com/logo/2781.png",
    "isFiat": true
  },
  "success": true,
  "timestamp": 1740657214057,
  "requestId": "39e3a914-7003-45f7-b679-fc88a52203ba",
  "message": ""
}

Tip: Use this single endpoint to fetch either crypto-token or fiat-currency data; the isFiat field indicates which type you’ve received.