v1

latestOpenAPI 3.1.02026-07-26360335.7 KB

Retrieve Account NFT Activities

Returns all activities of a given non-fungible token contract on Monad Testnet.

get/monad/collection/activities

Query parameters

addressstring required
collectionAddressstring
cursorstring

next page cursor.

limitinteger

default 20, max 50

ascendingOrderboolean

query result ordering, default to false (descending order), newest record first.

Response

200

codeinteger
reasonstring
messagestring

Example response

{
  "message": "OK",
  "result": {
    "data": [
      {
        "transactionHash": "0x8d9ba827e832ca1db7ab4af459c31afeb3157e998c88e0ba86652b2d7080f7d9",
        "method": "transfer",
        "blockNumber": 3166741,
        "timestamp": 1739503933,
        "from": "0x290b7C691Ee1FB118120f43E1A24d68B45CB27FB",
        "to": "0x1Ea22f95fDE6fdF31C53C78FF45D1caD20876F76",
        "type": "ERC1155",
        "nft": {
          "name": "3",
          "contractAddress": "0x43D1CF839F5A39A63D90920d1A738697DDbE42bD",
          "tokenId": "3"
        },
        "fromAddress": {
          "address": "0x290b7C691Ee1FB118120f43E1A24d68B45CB27FB"
        },
        "toAddress": {
          "address": "0x1Ea22f95fDE6fdF31C53C78FF45D1caD20876F76"
        }
      }
    ],
    "total": 20
  }
}