Get Address Inscriptions

Get inscription UTXO list by address

get

/v1/indexer/address/{address}/inscription-data

Authorizations
Path parameters
addressstringrequired

Address

Query parameters
cursorintegerrequired

Start offset

Example: 0
sizeintegerrequired

Number of items returned

Example: 16
Responses
curl -L \
  --url 'https://open-api-fractal.unisat.io/v1/indexer/address/{address}/inscription-data?cursor=1&size=1' \
  --header 'Authorization: Bearer JWT'
{
  "msg": "OK",
  "code": 0,
  "data": {
    "cursor": 1,
    "total": 1,
    "totalConfirmed": 1,
    "totalUnconfirmed": 1,
    "totalUnconfirmedSpend": 1,
    "inscription": [
      {
        "address": "text",
        "inscriptionId": "text",
        "inscriptionNumber": 1,
        "contentType": "text",
        "contentLength": 1,
        "offset": 1,
        "timestamp": 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
            }
          ]
        }
      }
    ]
  }
}

Last updated