v11

latestOpenAPI 3.1.0AGPL-3.0-onlyraw.githubusercontent.com2026-08-01307390.9 KB
Accounts

Get UTXOs for an address, XPUB, or descriptor.

Returns unspent outputs for an address, XPUB, or descriptor on Bitcoin-type coins. By default both confirmed and unconfirmed UTXOs are returned; confirmed=true filters out unconfirmed entries. Results are sorted by block height with newest entries first.

Unconfirmed UTXOs omit height, have confirmations set to 0, and can include lockTime. XPUB and descriptor UTXOs also include address and derivation path when available. Coinbase UTXOs include coinbase=true only up to the coinbase confirmation limit, currently 100 blocks.

Load estimate: Variable; address lookups are usually medium, while XPUB/descriptor lookups grow with gap, derived addresses, and UTXO count.

get/api/v2/utxo/{descriptor}

Path parameters

descriptorstring required

Address, XPUB, or supported descriptor. URL-encode descriptors.

Query parameters

confirmedboolean

When true, return only confirmed UTXOs.

gapinteger

XPUB/address derivation gap limit. Values are capped by the server.

Response

UTXO list.

txidstring required
voutinteger required
valuestring

Integer amount in the lowest chain denomination, encoded as a string.

heightinteger
confirmationsinteger required
addressstring
pathstring
lockTimeinteger
coinbaseboolean

Example response

[
  {
    "value": "100000000"
  }
]