Last updated 10 months ago
Address
Successful operation
"OK"
const response = await fetch('https://open-api.unisat.io/v1/indexer/address/{address}/inscription-utxo-data?cursor=0&size=0', { method: 'GET', headers: {}, }); const data = await response.json();
{ "code": 0, "msg": "OK", "data": { "cursor": 0, "total": 0, "totalConfirmed": 0, "totalUnconfirmed": 0, "totalUnconfirmedSpend": 0, "utxo": [ { "address": "text", "codeType": 0, "height": 0, "idx": 0, "inscriptions": [ { "inscriptionId": "text", "inscriptionNumber": 0, "isBRC20": false, "moved": false, "offset": 0 } ], "isOpInRBF": false, "satoshi": 10000, "scriptPk": "text", "scriptType": "text", "txid": "text", "vout": 0 } ] } }