Last updated 3 months ago
/v1/indexer/address/{address}/utxo-data
Address
Start offset
0
Number of items returned
16
Only confirmed UTXO
false
curl -L \ --url 'https://open-api.unisat.io/v1/indexer/address/{address}/utxo-data?cursor=1&size=1' \ --header 'Authorization: Bearer JWT'
{ "msg": "OK", "code": 0, "data": { "cursor": 1, "total": 1, "totalConfirmed": 1, "totalUnconfirmed": 1, "totalUnconfirmedSpend": 1, "utxo": [ { "address": "text", "codeType": 1, "height": 1, "idx": 1, "isOpInRBF": false, "satoshi": 10000, "scriptPk": "text", "scriptType": "text", "txid": "text", "vout": 0, "inscriptions": [ { "inscriptionId": "text", "inscriptionNumber": 1, "isBRC20": true, "moved": true, "offset": 1 } ] } ] } }