Get rune holders

Retrieves a paginated list of holders for a Rune.


GET

Parameters

Path Parameters

etching
REQUIRED
string

Query Parameters

offset
integer Result offset
limit
integer Results per page
Status codeDescription
200Default Response
cURL
curl -L \
"https://api.hiro.so/runes/v1/etchings/{etching}/holders?offset={offset}&limit={limit}" \
-H 'Accept: application/json'
Response
{
"limit": 20,
"offset": 0,
"total": 1,
"results": [
{
"address": "bc1q7jd477wc5s88hsvenr0ddtatsw282hfjzg59wz",
"balance": "11000000000"
}
]
}