Masumi Logo

/utxos

Gets UTXOs (internal)

GET
/utxos
token<token>

API key authentication via header (token)

In: header

Query Parameters

addressstring

The address to get the UTXOs for

Lengthlength <= 150
networkstring
Value in"Preprod" | "Mainnet"
count?integer

The number of UTXOs to get

Default10
Range1 <= value <= 100
page?integer

The page number to get

Default1
Range1 <= value <= 100
order?string

The order to get the UTXOs in

Default"desc"
Value in"asc" | "desc"

Response Body

curl -X GET "https://loading/./../api/v1/utxos/?address=string&network=Preprod&count=10&page=1&order=asc"
{
  "status": "success",
  "data": {
    "Utxos": [
      {
        "txHash": "tx_hash",
        "address": "addr1qx2ej34k567890",
        "Amounts": [
          {
            "unit": "",
            "quantity": 10000000
          }
        ],
        "outputIndex": 1,
        "block": "1",
        "dataHash": "data_hash",
        "inlineDatum": "inline_datum",
        "referenceScriptHash": "reference_script_hash"
      }
    ]
  }
}