Holders by Rune
This endpoint is commonly used to pass a rune ID, and get the full list of wallets holding the rune, and the amount they hold.
get
Get holders for a specific Rune by identifier.
Authorizations
Path parameters
identifierstringRequired
Query parameters
offsetnumberOptional
limitnumber Β· min: 1 Β· max: 25Optional
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/{identifier}/holders HTTP/1.1
Host: api.secretkeylabs.io
x-api-key: YOUR_API_KEY
Accept: */*
{
"offset": 1,
"limit": 1,
"total": 1,
"items": [
{
"address": "text",
"amount": "text"
}
]
}
Last updated