Get Inscription UTXO

Get inscription UTXO list by address

GEThttps://open-api.unisat.io/v1/indexer/address/{address}/inscription-utxo-data
Path parameters
address*string

Address

Query parameters
Response

Successful operation

Body
codeenum
0-1
msgstring
Example: "OK"
dataobject
Request
const response = await fetch('https://open-api.unisat.io/v1/indexer/address/{address}/inscription-utxo-data', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "code": 0,
  "msg": "OK",
  "data": {
    "utxo": [
      {
        "address": "text",
        "inscriptions": [
          {
            "inscriptionId": "text",
            "isBRC20": false,
            "moved": false
          }
        ],
        "isOpInRBF": false,
        "satoshi": 10000,
        "scriptPk": "text",
        "scriptType": "text",
        "txid": "text",
        "vout": 0
      }
    ]
  }
}

Last updated