RSS3 Documentation

Retrieve Node transaction events by address

Retrieve the transaction events for a specific Node by its address. This endpoint allows filtering by cursor and limit for pagination.

GET
/nta/nodes/{address}/events
/nta/nodes/{address}/events

Path Parameters

address
Required
string

The address of the Node to retrieve.

Query Parameters

cursorstring

Specify the cursor used for pagination. This helps in retrieving the next set of results in a paginated response.

limitinteger

Limit the number of results

Default: 50
curl -X GET "https://gi.rss3.io/nta/nodes/string/events?cursor=string&limit=50"

A successful response containing transaction events for the specified node. Each entry in the data array includes detailed information about the event.

{
  "data": [
    {
      "transaction": {
        "hash": "0x84c045a41d6fb83a94f4f2096863faced7c5799bcd382bec49333d017f744c41",
        "index": 1
      },
      "block": {
        "hash": "0x0e9f8868b1fd7aa28183292d198b4375263fbc38541d51efd90aec1de7e4b5bc",
        "number": 210189,
        "timestamp": 1710278897
      },
      "address_from": "0x69982e017acc0fde3d1542205089a8d3eafcd1b7",
      "address_to": "0x28f14d917fddba0c1f2923c406952478dfda5578",
      "node_id": 18,
      "type": "nodeCreated",
      "log_index": 0,
      "chain_id": 12553,
      "metadata": {}
    }
  ],
  "cursor": "string"
}