Transactions

Get Transactions Stream

post

Returns transactions which have been committed to the ledger. Check detailed documentation for brief explanation

Body
all ofOptionalExample: {"limit_per_page":5}
and
Responses
200
Transactions (paginated)
application/json
Responseall of
post
POST /stream/transactions HTTP/1.1
Host: xrd-gateway.nownodes.io
Content-Type: application/json
Accept: */*
Content-Length: 20

{
  "limit_per_page": 5
}
{
  "ledger_state": {
    "network": "<network-name>",
    "state_version": 1,
    "proposer_round_timestamp": "text",
    "epoch": 1,
    "round": 1
  },
  "next_cursor": "text",
  "items": [
    {
      "state_version": 1,
      "epoch": 1,
      "round": 1,
      "round_timestamp": "text",
      "transaction_status": "Unknown",
      "payload_hash": "text",
      "intent_hash": "text",
      "fee_paid": "text",
      "affected_global_entities": [
        "text"
      ],
      "confirmed_at": "2025-07-14T04:41:06.882Z",
      "error_message": "text",
      "raw_hex": "text",
      "receipt": {
        "status": "Unknown",
        "fee_summary": {},
        "costing_parameters": {},
        "fee_destination": {},
        "fee_source": {},
        "state_updates": {},
        "next_epoch": {},
        "output": {},
        "detailed_events": [
          {
            "identifier": {
              "package": "text",
              "blueprint": "text",
              "event": "text"
            },
            "payload_type_definition": {
              "kind": "SchemaLocal"
            },
            "emitter": {
              "type": "EntityMethod"
            },
            "payload": {
              "programmatic_json": {}
            }
          }
        ],
        "error_message": "text"
      },
      "manifest_instructions": "text",
      "manifest_classes": [
        "General"
      ],
      "message": {},
      "balance_changes": {
        "fungible_fee_balance_changes": [
          {
            "type": "FeePayment",
            "entity_address": "text",
            "resource_address": "text",
            "balance_change": "text"
          }
        ],
        "fungible_balance_changes": [
          {
            "entity_address": "text",
            "resource_address": "text",
            "balance_change": "text"
          }
        ],
        "non_fungible_balance_changes": [
          {
            "entity_address": "text",
            "resource_address": "text",
            "added": [
              "text"
            ],
            "removed": [
              "text"
            ]
          }
        ]
      },
      "subintent_details": [
        {
          "subintent_hash": "text",
          "manifest_instructions": "text",
          "message": {},
          "child_subintent_hashes": [
            "text"
          ]
        }
      ],
      "child_subintent_hashes": [
        "text"
      ]
    }
  ]
}