v1

latestOpenAPI 3.0.32026-07-1320201.0 MB
Solana Blockchain Queries

Get Token Information

Get the information of a SPL-Token

get/api/v2/solana/tokens/{mint}

Headers

X-Network'testnet' | 'mainnet'

Specify "testnet" for test network or leave empty for main network. Defaults to "mainnet" if not provided.

Authorizationstring required

Bearer token for authorization. Required for authenticated endpoints.

Content-Type'application/json' | 'application/x-www-form-urlencoded' | 'multipart/form-data'

The MIME type of the request body.

Response

statusinteger
okboolean
messagestring

Example response

{
  "status": 200,
  "ok": true,
  "message": "Token information fetched",
  "data": {
    "mint": "Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB",
    "symbol": "USDT",
    "name": "USDT",
    "uri": "",
    "decimals": 6,
    "amount": 1889937989.6564
  }
}