Skip to main content

Transaction UTXOs

GET /txs/:hash/utxos

Return the inputs and UTXOs of the specific transaction.

Request

Path Parameters

    hash 64-character case-sensitive hexadecimal string required

    Hash of the requested transaction

    Example: 6e5f825c82c1c6d6b77f2a14092f3b78c8f1b66db6f4cf8caec1555b6f967b3b
Responses

Return the contents of the transaction.


Schema
    hash string required

    Transaction hash

    inputs object[]required
  • Array [
  • address string required

    Input address

    amount object[]required
  • Array [
  • unit Lovelace or concatenation of asset policy_id and hex-encoded asset_name required

    The unit of the value

    quantity string required

    The quantity of the unit

  • ]
  • tx_hash string required

    Hash of the UTXO transaction

    output_index integer required

    UTXO index in the transaction

    data_hash string nullable required

    The hash of the transaction output datum

    inline_datum string nullable required

    CBOR encoded inline datum

    reference_script_hash string nullable required

    The hash of the reference script of the input

    collateral boolean required

    Whether the input is a collateral consumed on script validation failure

    reference boolean

    Whether the input is a reference transaction input

  • ]
  • outputs object[]required
  • Array [
  • address string required

    Output address

    amount object[]required
  • Array [
  • unit Lovelace or concatenation of asset policy_id and hex-encoded asset_name required

    The unit of the value

    quantity string required

    The quantity of the unit

  • ]
  • output_index integer required

    UTXO index in the transaction

    data_hash string nullable required

    The hash of the transaction output datum

    inline_datum string nullable required

    CBOR encoded inline datum

    collateral boolean required

    Whether the output is a collateral output

    reference_script_hash string nullable required

    The hash of the reference script of the output

  • ]
Loading...