Committed details

Get Committed Transaction Details

post

Returns the committed details and receipt of the transaction for a given transaction identifier. Transaction identifiers which don't correspond to a committed transaction will return a TransactionNotFoundError.

Body
all ofOptionalExample: {"intent_hash":"<transaction-intent-hash>"}
Responses
200
Transaction Status
application/json
Responseall of
post
POST /transaction/committed-details HTTP/1.1
Host: xrd-gateway.nownodes.io
Content-Type: application/json
Accept: */*
Content-Length: 43

{
  "intent_hash": "<transaction-intent-hash>"
}
{
  "ledger_state": {
    "network": "<network-name>",
    "state_version": 1,
    "proposer_round_timestamp": "text",
    "epoch": 1,
    "round": 1
  },
  "transaction": {
    "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-10T15:44:17.632Z",
    "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"
    ]
  }
}