Get BTC UTXO

Get non inscription UTXO list by address

get
Authorizations
Path parameters
addressstringRequired

Address

Query parameters
cursorintegerRequired

Start offset

Example: 0
sizeintegerRequired

Number of items returned

Example: 16
Responses
200
Successful operation
application/json
get
GET /v1/indexer/address/{address}/utxo-data HTTP/1.1
Host: open-api-fractal.unisat.io
Authorization: Bearer JWT
Accept: */*
{
  "code": 0,
  "msg": "OK",
  "data": {
    "cursor": 1,
    "total": 1,
    "totalConfirmed": 1,
    "totalUnconfirmed": 1,
    "totalUnconfirmedSpend": 1,
    "utxo": [
      {
        "address": "text",
        "codeType": 1,
        "height": 1,
        "idx": 1,
        "inscriptions": [
          {
            "inscriptionId": "text",
            "inscriptionNumber": 1,
            "isBRC20": true,
            "moved": true,
            "offset": 1
          }
        ],
        "isOpInRBF": false,
        "satoshi": 10000,
        "scriptPk": "text",
        "scriptType": "text",
        "txid": "text",
        "vout": 0
      }
    ]
  }
}

Last updated