v1

latestOpenAPI 3.1.02026-07-26360335.7 KB

Retrieve Account Token Activities

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

get/monad/token/activities

Query parameters

addressstring required
tokenAddressstring
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": "0x3a02f0fd7f97d674f0e8e10fc02e2d957a56489a28bf57853b2061dbc43d1d68",
        "method": "mint",
        "blockNumber": 2592598,
        "timestamp": 1738912961,
        "from": "0x0000000000000000000000000000000000000000",
        "to": "0x290b7C691Ee1FB118120f43E1A24d68B45CB27FB",
        "amount": "00000000000000000000000000000000000000000000000000000000000000000000000001000000",
        "token": {
          "name": "monadtest",
          "contractAddress": "0x8f01C14F15966aE671035F1ED78334fC32a7AB6b",
          "symbol": "tmod",
          "decimals": 18,
          "image": "https://api.bbscan.io/static/img/logo/tmod.png"
        },
        "fromAddress": {
          "address": "0x0000000000000000000000000000000000000000",
          "isContract": true
        },
        "toAddress": {
          "address": "0x290b7C691Ee1FB118120f43E1A24d68B45CB27FB"
        }
      }
    ],
    "total": 4
  }
}