Unspent BRC-20 Transfers

Returns all unspent (valid) BRC-20 transfer inscriptions for a given address.

get

Retrieve unspent BRC-20 transfer inscriptions for an address.

Authorizations
x-api-keystringRequired
Path parameters
addressstring · BitcoinAddress · min: 10RequiredDefault: bc1q0egjvlcfq77cxd9kvpgppyuxckzvws46e3sxch
Query parameters
offsetnumberOptionalDefault: 0
limitnumber · min: 25 · max: 60OptionalDefault: 60
Responses
200

BRC20 unspent transfers for the address

application/json
get
/v1/ordinals/address/{address}/brc20/unspent-transfers
GET /v1/ordinals/address/{address}/brc20/unspent-transfers HTTP/1.1
Host: api.secretkeylabs.io
x-api-key: YOUR_API_KEY
Accept: */*
{
  "limit": 1,
  "offset": 1,
  "items": [
    {
      "ticker": "text",
      "amount": "text",
      "blockHeight": 1,
      "blockTime": "text",
      "txid": "text",
      "inscriptionId": "text",
      "inscriptionNumber": 1,
      "satpoint": "text"
    }
  ]
}

Last updated