For the complete documentation index, see llms.txt. This page is also available as Markdown.

block/transaction - Cardano

Example code for the block/transaction JSON_RPC method. Complete guide on how to use block/transaction JSON_RPC in GetBlock Web3 documentation.

This endpoint returns a single transaction from a block, identified by the block and transaction identifiers. It is used when a block listing references a transaction that must be fetched separately.

Parameters

The request body is a JSON object with the following fields.

Field
Type
Required
Description

network_identifier

object

Yes

The network to query

block_identifier

object

Yes

Full block identifier with index and hash

transaction_identifier

object

Yes

The transaction hash to fetch

Request

curl --location --request POST 'https://go.getblock.io/<ACCESS-TOKEN>/block/transaction' \
--header 'Content-Type: application/json' \
--data-raw '{
    "network_identifier": {
        "blockchain": "cardano",
        "network": "mainnet"
    },
    "block_identifier": {
        "index": 10453789,
        "hash": "6e9e89632bc5c72030d3a486647e889c48d63e4da0643191b13566ad816d2d57"
    },
    "transaction_identifier": {
        "hash": "10b54fd708ab2e5703979b4ba27ca0339882abc2062e77fbe51e625203a49642"
    }
}'
example.js
const response = await fetch(
    'https://go.getblock.io/<ACCESS-TOKEN>/block/transaction',
    {
        method: 'POST',
        headers: { 'Content-Type': 'application/json' },
        body: JSON.stringify({"network_identifier": {"blockchain": "cardano", "network": "mainnet"}, "block_identifier": {"index": 10453789, "hash": "6e9e89632bc5c72030d3a486647e889c48d63e4da0643191b13566ad816d2d57"}, "transaction_identifier": {"hash": "10b54fd708ab2e5703979b4ba27ca0339882abc2062e77fbe51e625203a49642"}})
    }
);
console.log(await response.json());

Response

Response Parameters

Field
Type
Description

transaction.transaction_identifier

object

The transaction hash

transaction.operations

array

The transaction's Rosetta operations

Use Cases

  • Transaction Views: Fetch full operation detail for one transaction

  • Deposit Confirmation: Confirm a specific transaction's operations

  • Reconciliation: Reconcile a single transaction's balance changes

  • Auditing: Retrieve a transaction referenced by a block listing

Error Handling

Error Code
Message
Description

1

Invalid request

The request body is malformed or missing required fields

4

Block not found

The requested block does not exist on this node

5

Internal error

The node failed to answer the request

Was this helpful?