Retrieve confirmed UTXOs (paginate through large sets if needed). It returns 10k utxos per page. Iterate using offset of hasMore is true.
bc1q0egjvlcfq77cxd9kvpgppyuxckzvws46e3sxch
0
60
Paginated Utxo list
GET /v1/bitcoin/address/{address}/utxo HTTP/1.1 Host: api.secretkeylabs.io x-api-key: YOUR_API_KEY Accept: */*
{ "hasMore": true, "items": [ { "txid": "text", "vout": 1, "value": 1, "status": { "confirmed": true, "blockHeight": 1, "blockHash": "text", "blockTime": 1 } } ] }