Get rune holders

Retrieves a paginated list of holders for a Rune.

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

Path Parameters

etchingRune ID & Rune number & Rune name & Rune name with spacers

Query Parameters

offset?Offset

Result offset

limit?Limit

Results per page

Range1 <= value <= 60

Response Body

Default Response

TypeScript Definitions

Use the response body type in TypeScript.

limitinteger
offsetinteger
totalinteger
resultsarray<object>
curl -X GET "https://api.hiro.so//runes/v1/etchings/string/holders?offset=0&limit=1"
fetch("https://api.hiro.so//runes/v1/etchings/string/holders?offset=0&limit=1")
package main

import (
  "fmt"
  "net/http"
  "io/ioutil"
)

func main() {
  url := "https://api.hiro.so//runes/v1/etchings/string/holders?offset=0&limit=1"

  req, _ := http.NewRequest("GET", url, nil)
  
  res, _ := http.DefaultClient.Do(req)
  defer res.Body.Close()
  body, _ := ioutil.ReadAll(res.Body)

  fmt.Println(res)
  fmt.Println(string(body))
}
import requests

url = "https://api.hiro.so//runes/v1/etchings/string/holders?offset=0&limit=1"

response = requests.request("GET", url)

print(response.text)
{
  "limit": 20,
  "offset": 0,
  "total": 1,
  "results": [
    {
      "address": "bc1q7jd477wc5s88hsvenr0ddtatsw282hfjzg59wz",
      "balance": "11000000000"
    }
  ]
}