v1

latestOpenAPI 3.1.02026-07-26360335.7 KB

Retrieve Token Holders

Returns the token distribution of a given token contract on the Monad Testnet, including the addresses, amounts, and their percentage of the total supply.

get/monad/token/holders

Query parameters

contractAddressstring required
cursorstring
limitstring

default 20, max 50

Response

200

codeinteger
reasonstring
messagestring

Example response

{
  "message": "OK",
  "result": {
    "data": [
      {
        "holder": "0xFf73Ba9e0669D7ead82421Ad105bC6D715606Ec4",
        "percentage": "99.946173",
        "amount": "99973334"
      }
    ],
    "nextPageCursor": 20,
    "total": 101
  }
}