GET /holders/graph/{id}
GET

/v1/holders/graph/{id}

Holder count history

AuthNone — works without a key

Request

GEThttps://api.xrpl.to/v1/holders/graph/0dd550278b74cb6690fdae351e8e0df3
Path parameterValueDescription
idA token id: its md5, slug or issuer_currency
Query parameterValueDescription
range1D|7D|1M|3M|1Y|5Y|ALL (default: 7D)
curl 'https://api.xrpl.to/v1/holders/graph/0dd550278b74cb6690fdae351e8e0df3'

Response

200Example response40 ms · just now · 1.1 KB · 57 lines
https://api.xrpl.to/v1/holders/graph/0dd550278b74cb6690fdae351e8e0df3
{
  "success": true,
  "took": 37,
  "length": 1801,
  "history": [
    {
      "active24H": 2026,
      "holders": 67290,
      "length": 97665,
      "time": 1789371215828,
      "top10": 75.92,
      "top100": 98.57,
      "top20": 92.19,
      "top50": 98.32
    },
    {
      "active24H": 2026,
      "holders": 67289,
      "length": 97665,
      "time": 1789371408988,
      "top10": 75.92,
      "top100": 98.57,
      "top20": 92.19,
      "top50": 98.32
    },
    {
      "active24H": 2026,
      "holders": 67290,
      "length": 97665,
      "time": 1789371637478,
      "top10": 75.92,
      "top100": 98.57,
      "top20": 92.19,
      "top50": 98.32
    },
    {
      "active24H": 2027,
      "holders": 67290,
      "length": 97667,
      "time": 1789372165168,
      "top10": 75.92,
      "top100": 98.57,
      "top20": 92.19,
      "top50": 98.32
    },
    {
      "active24H": 2027,
      "holders": 67290,
      "length": 97667,
      "time": 1789372397631,
      "top10": 75.92,
      "top100": 98.57,
      "top20": 92.19,
      "top50": 98.32
    }
  ]
}

Long arrays and strings are shortened in the example; Send request for the full answer.

Shapeas documented
{ success, took, length, history[] }

What it does

Holder count history

A token id can be its md5, slug or issuer_currency. How to build an md5 →
OpenAPI