Skip to main content
GET
/
api
/
v1
/
onchain
/
utxos
List on-chain UTXOs
curl --request GET \
  --url https://api.example.com/api/v1/onchain/utxos
[
  {
    "amount_sat": 1,
    "outpoint": "<string>",
    "confirmation_height": 1
  }
]

Response

200 - application/json

Returns the on-chain UTXOs

amount_sat
integer<int64>
required

The value of the UTXO in satoshis.

Required range: x >= 0
outpoint
string
required

Contains the reference to the specific transaction output via transaction ID and index.

confirmation_height
integer<int32> | null

An optional field that specifies the block height at which the transaction was confirmed. If the transaction is unconfirmed, this value will be None.

Required range: x >= 0