Skip to main content

Address UTXOs

GET /addresses/:address/utxos

UTXOs of the address.

Request

Path Parameters

    address string required

    Bech32 address.

    Example: addr1qxqs59lphg8g6qndelq8xwqn60ag3aeyfcp33c2kdp46a09re5df3pzwwmyq946axfcejy5n4x0y99wqpgtp2gd0k09qsgy6pz

Query Parameters

    count integer

    Possible values: >= 1 and <= 100

    Default value: 100

    The number of results displayed on one page.

    page integer

    Possible values: >= 1 and <= 21474836

    Default value: 1

    The page number for listing the results.

    order string

    Possible values: [asc, desc]

    Default value: asc

    The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last.

Responses

Return the address content


Schema
  • Array [
  • address string required

    Bech32 encoded addresses - useful when querying by payment_cred

    tx_hash string required

    Transaction hash of the UTXO

    tx_index integer deprecated

    UTXO index in the transaction

    output_index integer required

    UTXO index in the transaction

    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

  • ]
  • block string required

    Block hash of the UTXO

    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 output

  • ]
Loading...