Home

Radix Core API - Babylon (Bottlenose)

vv1.2.0
Base URL
https://xrd.nownodes.io/core

Authentication

api-keyAuthapiKey

API Key: api-key in header

Core

LTS

For long term support/backward compatible endpoints aimed at integrators such as exchanges.

Get Construction Metadata

POST
https://xrd.nownodes.io/core/lts/transaction/construction

Authorizations

ApiKeyAuthApiKeyAuth

api-key string

NOWNodes API key passed in the api-key header.

Returns information necessary to build a transaction

Body

application/json
networkNetworkIdentifierrequired

The logical name of the network

Response

200OK

All info needed to build a transaction

500Internal Server Error

Server error

Submit Transaction

POST
https://xrd.nownodes.io/core/lts/transaction/submit

Authorizations

ApiKeyAuthApiKeyAuth

api-key string

NOWNodes API key passed in the api-key header.

Submits a notarized transaction to the network. Returns whether the transaction submission was already included in the node's mempool.

Body

application/json
networkNetworkIdentifierrequired

The logical name of the network

notarized_transaction_hexstringrequired

A hex-encoded, compiled notarized transaction.

force_recalculateboolean

If true, the transaction validity is freshly recalculated without using any caches (defaults false)

Response

200OK

Transaction Submit Response

400Bad Request

Client error

500Internal Server Error

Server error

Get Transaction Status

POST
https://xrd.nownodes.io/core/lts/transaction/status

Authorizations

ApiKeyAuthApiKeyAuth

api-key string

NOWNodes API key passed in the api-key header.

Shares the node's knowledge of any payloads associated with the given intent hash. Generally there will be a single payload for a given intent, but it's theoretically possible there may be multiple. This knowledge is summarised into a status for the intent. This summarised status in the response is likely sufficient for most clients.

Body

application/json
networkNetworkIdentifierrequired

The logical name of the network

intent_hashIntentHashInputrequired

The intent hash for a user transaction, also known as the transaction id. This hash identifies the core content "intent" of the transaction. Each intent can only be committed once. This hash gets signed by any signatories on the transaction, to create the signed intent. Either hex or Bech32m-encoded strings are supported.

Response

200OK

Transaction status response

400Bad Request

Client error

500Internal Server Error

Server error

Get All Account Balances

POST
https://xrd.nownodes.io/core/lts/state/account-all-fungible-resource-balances

Authorizations

ApiKeyAuthApiKeyAuth

api-key string

NOWNodes API key passed in the api-key header.

Returns balances for all resources associated with an account

Body

application/json
networkNetworkIdentifierrequired

The logical name of the network

account_addressstringrequired

The Bech32m-encoded human readable version of the account's address

Response

200OK

Account all resource balances response

500Internal Server Error

Server error

Get Single Account Balance

POST
https://xrd.nownodes.io/core/lts/state/account-fungible-resource-balance

Authorizations

ApiKeyAuthApiKeyAuth

api-key string

NOWNodes API key passed in the api-key header.

Returns balance of a single fungible resource in an account

Body

application/json
networkNetworkIdentifierrequired

The logical name of the network

account_addressstringrequired

The Bech32m-encoded human readable version of the account's address

resource_addressResourceAddressrequired

The Bech32m-encoded human readable version of the resource address

Response

200OK

Account resource balance response

500Internal Server Error

Server error

Get Account Deposit Behaviour

POST
https://xrd.nownodes.io/core/lts/state/account-deposit-behaviour

Authorizations

ApiKeyAuthApiKeyAuth

api-key string

NOWNodes API key passed in the api-key header.

Returns deposit behaviour of a single account for multiple resource addresses

Body

application/json
networkNetworkIdentifierrequired

The logical name of the network

account_addressstringrequired

The Bech32m-encoded human readable version of the account's address.

resource_addressesArray<ResourceAddress>

The resource addresses to check the deposit behaviours of.

badgePresentedBadge

The depositor badge to check against the account's set of authorized depositors.

Show child attributes
typePresentedBadgeTypeResourceNonFungiblerequired
resource_addressResourceAddressrequired

The Bech32m-encoded human readable version of the resource address

Response

200OK

Account deposit behaviour response

500Internal Server Error

Server error

Get Transaction Outcomes

POST
https://xrd.nownodes.io/core/lts/stream/transaction-outcomes

Authorizations

ApiKeyAuthApiKeyAuth

api-key string

NOWNodes API key passed in the api-key header.

Returns a list of committed transaction outcomes (containing balance changes) from a given state version.

Body

application/json

A request to retrieve a sublist of committed transactions from the ledger.

networkNetworkIdentifierrequired

The logical name of the network

from_state_versionStateVersion<int64>[1, 100000000000000]required

The first (resultant) state version to be returned

limitintegerrequired

The maximum number of transactions that will be returned.

Response

200OK

Paged response

400Bad Request

Client error

500Internal Server Error

Server error

Get Account Transaction Outcomes

POST
https://xrd.nownodes.io/core/lts/stream/account-transaction-outcomes

Authorizations

ApiKeyAuthApiKeyAuth

api-key string

NOWNodes API key passed in the api-key header.

Returns a list of committed transaction outcomes (containing balance changes) from a given state version, filtered to only transactions which involved the given account.

Body

application/json

A request to retrieve a sublist of committed transactions from the ledger.

networkNetworkIdentifierrequired

The logical name of the network

account_addressstringrequired

The Bech32m-encoded human readable version of the account's address

from_state_versionStateVersion<int64>[1, 100000000000000]required

The first (resultant) state version to be returned

limitintegerrequired

The maximum number of transactions that will be returned.

Response

200OK

Paged response

400Bad Request

Client error

500Internal Server Error

Server error

Status

For status and configuration details for the node / engine.

Get Network Configuration

POST
https://xrd.nownodes.io/core/status/network-configuration

Authorizations

ApiKeyAuthApiKeyAuth

api-key string

NOWNodes API key passed in the api-key header.

Returns the network configuration of the network the node is connected to.

Response

200OK

Network Configuration

500Internal Server Error

Server error

Get Network Status

POST
https://xrd.nownodes.io/core/status/network-status

Authorizations

ApiKeyAuthApiKeyAuth

api-key string

NOWNodes API key passed in the api-key header.

Returns the current state and status of the node's copy of the ledger.

Body

application/json
networkNetworkIdentifierrequired

The logical name of the network

Response

200OK

Network Status

500Internal Server Error

Server error

Get Scenarios' results.

POST
https://xrd.nownodes.io/core/status/scenarios

Authorizations

ApiKeyAuthApiKeyAuth

api-key string

NOWNodes API key passed in the api-key header.

Get results of test "Scenarios" executed on this Network. Note: these Scenarios are meant to only be executed on test Networks; on a production Node, the response is expected to be empty.

Body

application/json
networkNetworkIdentifierrequired

The logical name of the network

Response

200OK

Scenarios' results

500Internal Server Error

Server error

Transaction

For transaction construction, preview, submission, and monitoring the status of an individual transaction.

Parse Transaction Payload

POST
https://xrd.nownodes.io/core/transaction/parse

Authorizations

ApiKeyAuthApiKeyAuth

api-key string

NOWNodes API key passed in the api-key header.

Extracts the contents and hashes of various types of transaction payloads, or sub-payloads.

Body

application/json
networkNetworkIdentifierrequired

The logical name of the network

payload_hexstringrequired

A hex-encoded payload of a full transaction or a partial transaction - either a notarized transaction, a signed transaction intent an unsigned transaction intent, or a ledger payload.

parse_modestringAnyNotarizedSignedUnsignedLedger

The type of transaction payload that should be assumed. If omitted, "Any" is used - where the payload is attempted to be parsed as each of the following in turn: Notarized, Signed, Unsigned, Ledger.

validation_modestringNoneStaticFull

The type of validation that should be performed, if the payload correctly decompiles as a Notarized Transaction. This is only relevant for Notarized payloads. If omitted, "Static" is used.

response_modestringBasicFull

The amount of information to return in the response. "Basic" includes the type, validity information, and any relevant identifiers. "Full" also includes the fully parsed information. If omitted, "Full" is used.

transaction_format_optionsTransactionFormatOptions

Requested transaction formats to include in the response

Show child attributes
manifestboolean

Whether to return the raw manifest (default true)

blobsboolean

Whether to return the hex-encoded blobs (default false)

messageboolean

Whether to return the transaction message (default true)

balance_changesboolean

Whether to return the transaction balance changes (default false)

raw_system_transactionboolean

Whether to return the raw hex-encoded system transaction bytes (default false)

raw_notarized_transactionboolean

Whether to return the raw hex-encoded notarized transaction bytes (default true)

raw_ledger_transactionboolean

Whether to return the raw hex-encoded ledger transaction bytes (default false)

Response

200OK

Transaction Parse Response

400Bad Request

Client error

500Internal Server Error

Server error

Transaction Submit

POST
https://xrd.nownodes.io/core/transaction/submit

Authorizations

ApiKeyAuthApiKeyAuth

api-key string

NOWNodes API key passed in the api-key header.

Submits a notarized transaction to the network. Returns whether the transaction submission was already included in the node's mempool.

Body

application/json
networkNetworkIdentifierrequired

The logical name of the network

notarized_transaction_hexstringrequired

A hex-encoded, compiled notarized transaction.

force_recalculateboolean

If true, the transaction validity is freshly recalculated without using any caches (defaults false)

Response

200OK

Transaction Submit Response

400Bad Request

Client error

500Internal Server Error

Server error

Get Transaction Status

POST
https://xrd.nownodes.io/core/transaction/status

Authorizations

ApiKeyAuthApiKeyAuth

api-key string

NOWNodes API key passed in the api-key header.

Shares the node's knowledge of any payloads associated with the given intent hash. Generally there will be a single payload for a given intent, but it's theoretically possible there may be multiple. This knowledge is summarised into a status for the intent. This summarised status in the response is likely sufficient for most clients.

Body

application/json
networkNetworkIdentifierrequired

The logical name of the network

intent_hashIntentHashInputrequired

The intent hash for a user transaction, also known as the transaction id. This hash identifies the core content "intent" of the transaction. Each intent can only be committed once. This hash gets signed by any signatories on the transaction, to create the signed intent. Either hex or Bech32m-encoded strings are supported.

Response

200OK

Transaction status response

400Bad Request

Client error

500Internal Server Error

Server error

Get Transaction Receipt

POST
https://xrd.nownodes.io/core/transaction/receipt

Authorizations

ApiKeyAuthApiKeyAuth

api-key string

NOWNodes API key passed in the api-key header.

Gets the transaction receipt for a committed transaction.

Body

application/json
networkNetworkIdentifierrequired

The logical name of the network

intent_hashIntentHashInputrequired

The intent hash for a user transaction, also known as the transaction id. This hash identifies the core content "intent" of the transaction. Each intent can only be committed once. This hash gets signed by any signatories on the transaction, to create the signed intent. Either hex or Bech32m-encoded strings are supported.

transaction_format_optionsTransactionFormatOptions

Requested transaction formats to include in the response

Show child attributes
manifestboolean

Whether to return the raw manifest (default true)

blobsboolean

Whether to return the hex-encoded blobs (default false)

messageboolean

Whether to return the transaction message (default true)

balance_changesboolean

Whether to return the transaction balance changes (default false)

raw_system_transactionboolean

Whether to return the raw hex-encoded system transaction bytes (default false)

raw_notarized_transactionboolean

Whether to return the raw hex-encoded notarized transaction bytes (default true)

raw_ledger_transactionboolean

Whether to return the raw hex-encoded ledger transaction bytes (default false)

Response

200OK

Committed transaction found response

400Bad Request

Client error

404Not Found

Committed transaction not found response

500Internal Server Error

Server error

Scrypto Call Preview

POST
https://xrd.nownodes.io/core/transaction/call-preview

Authorizations

ApiKeyAuthApiKeyAuth

api-key string

NOWNodes API key passed in the api-key header.

Preview a scrypto function or method call against the latest network state. Returns the result of the scrypto function or method call.

Body

application/json
networkNetworkIdentifierrequired

The logical name of the network

at_ledger_stateLedgerStateSelector

An optional specification of a historical ledger state at which to execute the request. The "historical state" feature (see the db.historical_substate_values.enable flag) must be enabled on the Node, and the requested point in history must be recent enough (in accordance with the Node's configured state_hash_tree.state_version_history_length).

Show child attributes
typeLedgerStateSelectorTypeByStateVersionrequired
targetTargetIdentifierrequired
Show child attributes
typeTargetIdentifierTypeMethodFunctionrequired
argumentsArray<string>required

Argument list

Response

200OK

Result of the scrypto function call

400Bad Request

Client error

500Internal Server Error

Server error

Transaction Preview

POST
https://xrd.nownodes.io/core/transaction/preview

Authorizations

ApiKeyAuthApiKeyAuth

api-key string

NOWNodes API key passed in the api-key header.

Preview a transaction against the latest network state, and returns the preview receipt.

Body

application/json
networkNetworkIdentifierrequired

The logical name of the network

at_ledger_stateLedgerStateSelector

An optional specification of a historical ledger state at which to execute the request. The "historical state" feature (see the db.historical_substate_values.enable flag) must be enabled on the Node, and the requested point in history must be recent enough (in accordance with the Node's configured state_hash_tree.state_version_history_length).

Show child attributes
typeLedgerStateSelectorTypeByStateVersionrequired
manifeststringrequired

A text-representation of a transaction manifest

blobs_hexArray<string>

An array of hex-encoded blob data (optional)

start_epoch_inclusiveinteger<int64>[0, 10000000000]required

An integer between 0 and 10^10, marking the epoch at which the transaction starts being valid

end_epoch_exclusiveinteger<int64>[0, 10000000000]required

An integer between 0 and 10^10, marking the epoch at which the transaction is no longer valid

notary_public_keyPublicKey

The notary public key to use (optional)

Show child attributes
key_typePublicKeyTypeEcdsaSecp256k1EddsaEd25519required
notary_is_signatoryboolean

Whether the notary should count as a signatory (optional, default false)

tip_percentageinteger<int32>[0, 65535]required

An integer between 0 and 65535, giving the validator tip as a percentage amount. A value of 1 corresponds to 1% of the fee.

nonceinteger<int64>[0, 4294967295]required

An integer between 0 and 2^32 - 1, chosen to allow a unique intent to be created (to enable submitting an otherwise identical/duplicate intent).

signer_public_keysArray<PublicKey>required

A list of public keys to be used as transaction signers

Show child attributes
key_typePublicKeyTypeEcdsaSecp256k1EddsaEd25519required
messageTransactionMessage

An optional transaction message. Only affects the costing.

Show child attributes
typeTransactionMessageTypePlaintextEncryptedrequired
flagsobjectrequired
Show child attributes
use_free_creditbooleanrequired
assume_all_signature_proofsbooleanrequired
skip_epoch_checkbooleanrequired
disable_auth_checksboolean

Can be used to skip performing auth checks during runtime.

This could be used to e.g.:

  • Preview protocol update style transactions
  • Mint resources for previewing trades with resources you don't own. If doing this, be warned:
    • Only resources which were potentially mintable/burnable at creation time will be mintable/burnable, due to feature flags on the resource.
    • Please see the below warning about unexpected results if using this approach.

Please be warned - this mode of operation is quite a departure from normal operation:

  • Calculated fees will likely be lower than a standard execution
  • This mode can subtly break invariants some dApp code might rely on, or result in unexpected behaviour, so the resulting execution result might not be valid for your needs. For example, if I used this flag to mint pool units to preview a redemption (or some dApp interaction which behind the scenes redeemed them), they'd redeem for less than they're currently worth, because the blueprint code relies on the total supply of the pool units to calculate their redemption worth, and you've just inflated the total supply through the mint operation.

Response

200OK

Transaction preview response

400Bad Request

Client error

500Internal Server Error

Server error

Mempool

For information on the contents of the node's mempool.

Get Mempool List

POST
https://xrd.nownodes.io/core/mempool/list

Authorizations

ApiKeyAuthApiKeyAuth

api-key string

NOWNodes API key passed in the api-key header.

Returns the hashes of all the transactions currently in the mempool

Body

application/json
networkNetworkIdentifierrequired

The logical name of the network

Response

200OK

Mempool List Response

500Internal Server Error

Server error

Get Mempool Transaction

POST
https://xrd.nownodes.io/core/mempool/transaction

Authorizations

ApiKeyAuthApiKeyAuth

api-key string

NOWNodes API key passed in the api-key header.

Returns the payload of a transaction currently in the mempool

Body

application/json
networkNetworkIdentifierrequired

The logical name of the network

payload_hashesArray<NotarizedTransactionHashInput>required

A list of payload hashes to attempt to read. Each hash must be either hex, or in Bech32m format.

Response

200OK

Mempool Transaction Response

404Not Found

Not found error

500Internal Server Error

Server error

State

For reading the state of entities. At present, we only support reading details from the top of the currently committed ledger.

Get Consensus Manager Details

POST
https://xrd.nownodes.io/core/state/consensus-manager

Authorizations

ApiKeyAuthApiKeyAuth

api-key string

NOWNodes API key passed in the api-key header.

Reads the consensus manager's substate/s from the top of the current ledger.

Body

application/json
networkNetworkIdentifierrequired

The logical name of the network

include_readiness_signalsboolean

Whether to include protocol update readiness signals of active validator set (default false).

Response

200OK

Current state response

400Bad Request

Client error

500Internal Server Error

Server error

Get Account Details

POST
https://xrd.nownodes.io/core/state/account

Authorizations

ApiKeyAuthApiKeyAuth

api-key string

NOWNodes API key passed in the api-key header.

Reads the account's substate/s from the top of the current ledger. Also returns all vaults under the account.

Body

application/json
networkNetworkIdentifierrequired

The logical name of the network

account_addressstringrequired

The Bech32m-encoded human readable version of the account's global address

Response

200OK

Current state response

400Bad Request

Client error

404Not Found

Not found error

500Internal Server Error

Server error

Get Component Details

POST
https://xrd.nownodes.io/core/state/component

Authorizations

ApiKeyAuthApiKeyAuth

api-key string

NOWNodes API key passed in the api-key header.

Reads the component's substate/s from the top of the current ledger. Also recursively extracts vault balance totals from the component's entity subtree.

Body

application/json
networkNetworkIdentifierrequired

The logical name of the network

component_addressstringrequired

The Bech32m-encoded human readable version of the component's global address

Response

200OK

Current state response

400Bad Request

Client error

404Not Found

Not found error

500Internal Server Error

Server error

Get Validator Details

POST
https://xrd.nownodes.io/core/state/validator

Authorizations

ApiKeyAuthApiKeyAuth

api-key string

NOWNodes API key passed in the api-key header.

Reads the validator's substate/s from the top of the current ledger.

Body

application/json
networkNetworkIdentifierrequired

The logical name of the network

validator_addressComponentAddressrequired

The Bech32m-encoded human readable version of the component address

Response

200OK

Current state response

400Bad Request

Client error

404Not Found

Not found error

500Internal Server Error

Server error

Get Access Controller Details

POST
https://xrd.nownodes.io/core/state/access-controller

Authorizations

ApiKeyAuthApiKeyAuth

api-key string

NOWNodes API key passed in the api-key header.

Reads the access controller's substate/s from the top of the current ledger.

Body

application/json
networkNetworkIdentifierrequired

The logical name of the network

controller_addressComponentAddressrequired

The Bech32m-encoded human readable version of the component address

Response

200OK

Current state response

400Bad Request

Client error

404Not Found

Not found error

500Internal Server Error

Server error

Get Resource Details

POST
https://xrd.nownodes.io/core/state/resource

Authorizations

ApiKeyAuthApiKeyAuth

api-key string

NOWNodes API key passed in the api-key header.

Reads the resource manager's substate/s from the top of the current ledger.

Body

application/json
networkNetworkIdentifierrequired

The logical name of the network

resource_addressstringrequired

The Bech32m-encoded human readable version of the resource's global address

Response

200OK

Current state response

400Bad Request

Client error

404Not Found

Not found error

500Internal Server Error

Server error

Get Non-Fungible Details

POST
https://xrd.nownodes.io/core/state/non-fungible

Authorizations

ApiKeyAuthApiKeyAuth

api-key string

NOWNodes API key passed in the api-key header.

Reads the data associated with a single Non-Fungible Unit under a Non-Fungible Resource.

Body

application/json
networkNetworkIdentifierrequired

The logical name of the network

resource_addressstringrequired

The Bech32m-encoded human readable version of the resource's global address

non_fungible_idNonFungibleLocalIdSimpleRepresentationrequired

The simple string representation of the non-fungible id.

  • For string ids, this is <the-string-id>
  • For integer ids, this is #the-integer-id#
  • For bytes ids, this is [the-lower-case-hex-representation]
  • For RUID ids, this is {...-...-...-...} where ... are each 16 hex characters. A given non-fungible resource has a fixed NonFungibleIdType, so this representation uniquely identifies this non-fungible under the given resource address.

Response

200OK

Current state response

400Bad Request

Client error

404Not Found

Not found error

500Internal Server Error

Server error

Get Package Details

POST
https://xrd.nownodes.io/core/state/package

Authorizations

ApiKeyAuthApiKeyAuth

api-key string

NOWNodes API key passed in the api-key header.

Reads the package's substate/s from the top of the current ledger.

Body

application/json
networkNetworkIdentifierrequired

The logical name of the network

package_addressstringrequired

The Bech32m-encoded human readable version of the package's global address

Response

200OK

Current state response

400Bad Request

Client error

404Not Found

Not found error

500Internal Server Error

Server error

Stream

To query the transaction or proof stream of the ledger.

Stream Proofs

POST
https://xrd.nownodes.io/core/stream/proofs

Authorizations

ApiKeyAuthApiKeyAuth

api-key string

NOWNodes API key passed in the api-key header.

Returns a stream of proofs committed to the node's ledger.

NOTE: This endpoint may return different results on different nodes:

  • Each node may persist different subset of signatures on a given proofs, as long as enough of the validator set has signed.
  • Inside an epoch, different nodes may receive and persist / keep different proofs, subject to constraints on gaps between proofs.

Proofs during an epoch can also be garbage collected by the node after the fact. Therefore proofs may disappear from this stream.

Some proofs (such as during genesis and protocol update enactment) are created on a node and don't include signatures.

This stream accepts four different options in the request:

  • All proofs forward (from state version)
  • All end-of-epoch proofs (from epoch number)
  • All end-of-epoch proofs triggering a protocol update
  • All node-injected proofs enacting genesis or a protocol update (for protocol update name, from state version)

The end-of-epoch proofs can be used to "trustlessly" verify the validator set for a given epoch. By tracking the fact that validators for epoch N sign the next validator set for epoch N + 1, this chain of proofs can be used to provide proof of the current validator set from a hardcoded start.

When a validator set is known for a given epoch, this can be used to verify the various transaction hash trees in the epoch, and to prove other data.

NOTE: This endpoint was built after agreeing the new Radix convention for paged APIs. Its models therefore follow the new convention, rather than attempting to align with existing loose Core API conventions.

Body

application/json

A request to retrieve a sublist of proofs.

networkNetworkIdentifierrequired

The logical name of the network

filterStreamProofsFilter

If not provided, defaults to "Any".

Show child attributes
typeStreamProofsFilterTypeAnyNewEpochsProtocolUpdateInitializationsProtocolUpdateExecutionrequired
max_page_sizeinteger

If specified, the maximum number of proofs that will be returned.

continuation_tokenContinuationToken

A continuation token is returned if and only if there are further non-empty pages of items currently available. The token can be provided in a following request to fetch the next page of results. The filter and sort should not be changed when re-using the continuation token.

Response

200OK

Stream proofs response

400Bad Request

Client error

500Internal Server Error

Server error

Get Committed Transactions

POST
https://xrd.nownodes.io/core/stream/transactions

Authorizations

ApiKeyAuthApiKeyAuth

api-key string

NOWNodes API key passed in the api-key header.

Returns the list of committed transactions.

Body

application/json

A request to retrieve a sublist of committed transactions from the ledger.

networkNetworkIdentifierrequired

The logical name of the network

from_state_versionStateVersion<int64>[1, 100000000000000]required

The first (resultant) state version to be returned

limitintegerrequired

The maximum number of transactions that will be returned.

sbor_format_optionsSborFormatOptions

Requested SBOR formats to include in the response

Show child attributes
rawboolean

Whether to return the raw hex-encoded bytes (default true)

programmatic_jsonboolean

Whether to return the programmatic json format (normally default true, defaults false for streamed transactions)

transaction_format_optionsTransactionFormatOptions

Requested transaction formats to include in the response

Show child attributes
manifestboolean

Whether to return the raw manifest (default true)

blobsboolean

Whether to return the hex-encoded blobs (default false)

messageboolean

Whether to return the transaction message (default true)

balance_changesboolean

Whether to return the transaction balance changes (default false)

raw_system_transactionboolean

Whether to return the raw hex-encoded system transaction bytes (default false)

raw_notarized_transactionboolean

Whether to return the raw hex-encoded notarized transaction bytes (default true)

raw_ledger_transactionboolean

Whether to return the raw hex-encoded ledger transaction bytes (default false)

substate_format_optionsSubstateFormatOptions

Requested substate formats to include in the response

Show child attributes
rawboolean

Whether to return the raw substate value bytes (default false)

hashboolean

Whether to return the raw substate value bytes hash (default false)

typedboolean

Whether to return the typed substate information (default true)

previousboolean

Whether to return the previous substate value for updates and deletes (default false)

include_proofsboolean

Whether to include LedgerProofs (default false)

Response

200OK

Committed transactions response

400Bad Request

Client error

500Internal Server Error

Server error