v1

latestOpenAPI 3.1.02026-07-26360335.7 KB

Retrieve Account Activity

Returns the historical activity of any address on Monad Testnet.

get/monad/account/activities

Query parameters

addressstring required
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": [
      {
        "hash": "0x9beb87709c2da58c00221e8d5975f5791745d198ee8c15dea6dd17bfcb910bd3",
        "timestamp": 1737687692000,
        "txStatus": 1,
        "transactionAddress": "0x27d502b0e8bc953b31d297377c6ec6a47b36fb78",
        "from": "0x27d502b0e8bc953b31d297377c6ec6a47b36fb78",
        "to": "0x581b1dd14731efe7986db62e2a003e859147ed14",
        "transactionFee": "0.00109",
        "txName": "Receive",
        "addTokens": [
          {
            "txHash": "0x9beb87709c2da58c00221e8d5975f5791745d198ee8c15dea6dd17bfcb910bd3",
            "from": "0x27d502b0e8bc953b31d297377c6ec6a47b36fb78",
            "to": "0x581b1dd14731efe7986db62e2a003e859147ed14",
            "contractAddress": "0x0000000000000000000000000000000000000000",
            "value": "999999999998908000000000000",
            "amount": 999999999.998908,
            "symbol": "MON",
            "decimals": 18,
            "logo": "https://imagedelivery.net/cBNDGgkrsEA-b_ixIp9SkQ/MON.png/public",
            "verified": true
          }
        ]
      }
    ],
    "total": 1
  }
}