GET /holders/info/{id}
GET

/v1/holders/info/{id}

Holder concentration (top10/20/50/100 %)

AuthNone — works without a key

Request

GEThttps://api.xrpl.to/v1/holders/info/0dd550278b74cb6690fdae351e8e0df3
Path parameterValueDescription
idA token id: its md5, slug or issuer_currency
curl 'https://api.xrpl.to/v1/holders/info/0dd550278b74cb6690fdae351e8e0df3'

Response

200Example response2 ms · just now · 0.3 KB · 18 lines
https://api.xrpl.to/v1/holders/info/0dd550278b74cb6690fdae351e8e0df3
{
  "success": true,
  "took": 1,
  "richInfo": {
    "time": 1789975881433,
    "length": 98086,
    "holders": 67329,
    "top10": 89.39,
    "top20": 91.79,
    "top50": 94.19,
    "top100": 95.6,
    "active24H": 2364,
    "frozen": 2,
    "frozenBalance": 2338.691998957817,
    "gini": 0.9997,
    "hhi": 722
  }
}
Shapeas documented
{
  success,
  took,
  richInfo: {
    time,
    length,
    holders,
    top10,
    top20,
    top50,
    top100,
    active24H
  }
}

What it does

Holder concentration (top10/20/50/100 %)

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