v1

latestOpenAPI 3.1.02026-07-26360335.7 KB

Retrieve Account NFTs

Returns all non-fungible tokens currently held by any given address on the Monad Testnet.

get/monad/account/nfts

Query parameters

addressstring required
pageIndexinteger

Return a fixed number of 5 collections per page.

verifiedboolean

whether to include only NFTs from verified collections.

unknownboolean

whether to include NFTs from unverified collections.

Response

200

codeinteger
reasonstring
messagestring

Example response

{
  "message": "OK",
  "result": {
    "data": [
      {
        "contractAddress": "0x43D1CF839F5A39A63D90920d1A738697DDbE42bD",
        "ercStandard": "ERC1155",
        "items": [
          {
            "name": "2",
            "contractAddress": "0x43D1CF839F5A39A63D90920d1A738697DDbE42bD",
            "tokenId": "2",
            "qty": "1"
          }
        ]
      }
    ],
    "total": 16
  }
}