UTXOs
get
Get Rune UTXOs for a specific address with pagination support.
Authorizations
Path parameters
addressstring · BitcoinAddress · min: 10RequiredDefault:
bc1q0egjvlcfq77cxd9kvpgppyuxckzvws46e3sxchQuery parameters
offsetnumberOptionalDefault:
0limitnumber · min: 25 · max: 60OptionalDefault:
60runeIdstringOptional
includeUnconfirmedbooleanOptionalDefault:
falseResponses
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
/v1/runes/address/{address}/utxoGET /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