get_address_utxos
Enumerate unspent outputs for an address. Equivalent to
get_balance but itemized.
Params
{ "address": "<64-hex>" }
Result
{
"address": "8d896d64...50",
"tip_height": 5553,
"truncated": false,
"utxos": [
{
"tx_id": "fb8a634f...8c",
"output_index": 0,
"value": 1000000000,
"height": 5400,
"is_coinbase": false
},
{ "...": "..." }
]
}
Notes
- Returns up to 1000 UTXOs. If the address has more,
truncated: trueis set; callers must consume some entries (e.g. by spending them) before the remainder becomes reachable through this endpoint, or rely on a full-archive integration. is_coinbase: trueoutputs are not yet spendable iftip_height - height < 360.- Confirmation count:
tip_height - height + 1.
Counts against the UTXO-scan rate limit (30 / min / IP).