Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

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: true is 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: true outputs are not yet spendable if tip_height - height < 360.
  • Confirmation count: tip_height - height + 1.

Counts against the UTXO-scan rate limit (30 / min / IP).