UTXOs
get
Get Rune UTXOs for a specific address with pagination support.
Authorizations
Path parameters
addressstring Β· BitcoinAddress Β· min: 10RequiredDefault:
bc1q0egjvlcfq77cxd9kvpgppyuxckzvws46e3sxch
Query parameters
offsetnumberOptionalDefault:
0
limitnumber Β· min: 25 Β· max: 60OptionalDefault:
60
Responses
200
Default Response
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
GET /v1/runes/address/{address}/utxo HTTP/1.1
Host: api.secretkeylabs.io
x-api-key: YOUR_API_KEY
Accept: */*
{
"limit": 1,
"offset": 1,
"total": 1,
"items": [
{
"txid": "text",
"vout": 1,
"amount": 1,
"blockHeight": 1,
"runes": [
{
"runeName": "text",
"runeId": "text",
"amount": "text",
"divisibility": 1,
"symbol": "text"
}
]
}
]
}
Last updated