Get rune holders

Retrieves a paginated list of holders for a Rune.

GET

/runes/v1/etchings/{etching}/holders

Retrieves a paginated list of holders for a Rune.

Query Parameters

offsetinteger

Result offset

Minimum: 0

limitinteger

Results per page

Minimum: 1Maximum: 60

Path Parameters

etching
Required
string

Value can represent a Rune ID, Rune number, Rune name, or Rune name with spacers.

Status codeDescription
200Default Response
curl
curl -X GET "https://api.hiro.so/runes/v1/etchings/ZZZZZFEHUZZZZZ/holders"
Example Response
{
  "limit": 20,
  "offset": 0,
  "total": 1,
  "results": [
    {
      "address": "bc1q7jd477wc5s88hsvenr0ddtatsw282hfjzg59wz",
      "balance": "11000000000"
    }
  ]
}