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:
bc1q0egjvlcfq77cxd9kvpgppyuxckzvws46e3sxchQuery parameters
offsetnumberOptionalDefault:
0limitnumber · min: 25 · max: 60OptionalDefault:
60Responses
200
BRC20 unspent transfers for the address
application/json
400
Invalid input
application/json
401
Unauthorized
application/json
404
Not found
application/json
429
Rate limit exceeded
application/json
500
Internal server error
application/json
get
/v1/ordinals/address/{address}/brc20/unspent-transfersGET /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