Skip to main content

Transaction outputs by output references

Returns the specified transaction outputs. Returns 404 if any of the outputs specified do not exist unless the allow_missing query parameter is set to true. Results are sorted lexicographically by output reference and duplicates are omitted. Do not change the output references parameter while paginating.

Query Parameters
    resolve_datums boolean

    Try find and include the corresponding datums for datum hashes

    with_cbor boolean

    Include the CBOR encoding of the transaction output in the response

    allow_missing boolean

    Do not return 404 if any transactions are not found (404 will still be returned if you specify an index higher than the number of outputs in a transaction)

    count any

    The max number of results per page

    cursor string

    Pagination cursor string, use the cursor included in a page of results to fetch the next page

Request Body array required
  • Array [
  • string

  • ]
Responses

Get transaction outputs via output references


Schema
    data object[] required

    Endpoint response data

  • Array [
  • address string required

    Address which controls the UTxO

    assets object[] required

    List of assets contained in the UTxO

  • Array [
  • amount object required

    Integer or number by default, or a string representation if the amounts-as-strings header is set to true

    oneOf

    integer

    Integer or number by default, or a string representation if the amounts-as-strings header is set to true

    unit string required

    Asset (either lovelace or concatenation of hex encoded policy ID and asset name for native asset)

  • ]
  • datum object nullable

    Datum (inline or hash)

    bytes string nullable

    Hex encoded datum CBOR bytes (null if datum type is hash and corresponding datum bytes have not been seen on-chain)

    hash string required

    Datum hash

    json object nullable

    JSON representation of the datum (null if datum type is hash and corresponding datum bytes have not been seen on-chain)

    type DatumOptionType required

    Possible values: [hash, inline]

    Datum type (inline datum or datum hash)

    index integer required

    UTxO transaction index

    reference_script object nullable

    Details of a Native or Plutus script

    bytes string required

    Script bytes

    hash string required

    Script hash

    json object nullable

    JSON representation of script (null if script not of native type)

    type ScriptType required

    Possible values: [native, plutusv1, plutusv2]

    Script type and version

    tx_hash string required

    UTxO transaction hash

    txout_cbor string nullable

    Hex encoded transaction output CBOR bytes

  • ]
  • last_updated object required

    Details of the most recent block processed by the indexer (aka chain tip); that is, the data returned is correct as of this block in time.

    block_hash string required

    Hex-encoded hash of the most recently processed block (aka chain tip)

    block_slot int64 required

    Absolute slot of the most recently processed block (aka chain tip)

    timestamp string required

    UTC timestamp of when the most recently processed block was minted

    next_cursor string nullable

    Pagination cursor

Loading...