v1

latestOpenAPI 3.1.02026-07-26360335.7 KB

Retrieve Account Internal Transactions

Returns all internal transactions of any given address Monad Testnet

get/monad/account/internal/transactions

Query parameters

addressstring required
filterstring

all, from, to

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": "0x8d9ba827e832ca1db7ab4af459c31afeb3157e998c88e0ba86652b2d7080f7d9",
        "blockNumber": 3166741,
        "blockHash": "0xf50590e83577c8216f1e11e3c1c192ee5e0f4e618f6102617253d0e2bb7895bc",
        "from": "0x290b7c691ee1fb118120f43e1a24d68b45cb27fb",
        "to": "0x43d1cf839f5a39a63d90920d1a738697ddbe42bd",
        "type": "CALL",
        "value": "0",
        "timestamp": 1739503933,
        "traceIndex": 1,
        "toIsContract": true
      }
    ],
    "nextPageCursor": "1738288199",
    "total": 33
  }
}