Skip to main content
GET
/
address
/
{address}
/
utxo
Address UTXOs
curl --request GET \
  --url https://xbt-mainnet.gomaestro-api.org/v0/esplora/address/{address}/utxo \
  --header 'api-key: <api-key>'
[
  {
    "txid": "<string>",
    "vout": 123,
    "value": 123,
    "status": {
      "confirmed": true,
      "block_height": 123,
      "block_hash": "<string>",
      "block_time": 123
    }
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.gomaestro.org/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

api-key
string
header
required

Project API Key

Path Parameters

address
string
required

The Bitcoin address to query.

Example:

"bc1qcx7ys0ahvtfqcc63sfn6axls0qrhkadnslpd94"

Response

A list of UTXOs for the address.

txid
string
required

Transaction ID where the UTXO originates.

vout
integer
required

Index of the output in the transaction.

value
integer
required

Value of the UTXO in satoshis.

status
object
required