v1

latestOpenAPI 3.1.02026-07-26360335.7 KB

Retrieve Token Detail

retrieve token detail, including metadata (name, symbol, decimals), logo/image, and verification status.

get/monad/token/detail

Query parameters

addressstring required

the on-chain address of the token’s smart contract.

Response

200

codeinteger
reasonstring
messagestring

Example response

{
  "message": "OK",
  "result": {
    "contractAddress": "0x89e4a70de5F2Ae468B18B6B6300B249387f9Adf0",
    "logo": "https://docs.monad.xyz/img/monad_logo.png",
    "symbol": "fMON",
    "decimals": 18,
    "name": "Fantasy MON",
    "website": "https://monad.fantasy.top/",
    "totalSupply": "1000000000000000000000000000000000",
    "verified": true
  }
}