GET /holders/position/{id}/{address}
GET

/v1/holders/position/{id}/{address}

One account's stake in a token — balance, share of supply and rank, without building the holder list

AuthNone — works without a key

Request

GEThttps://api.xrpl.to/v1/holders/position/0dd550278b74cb6690fdae351e8e0df3/rJqiMb94hyz41SBTNr2AyPNW8AzELa8nE
Path parameterValueDescription
idA token id: its md5, slug or issuer_currency
addressAn XRPL account, its r-address
curl 'https://api.xrpl.to/v1/holders/position/0dd550278b74cb6690fdae351e8e0df3/rJqiMb94hyz41SBTNr2AyPNW8AzELa8nE'

Response

200Example response3 ms · just now · 0.2 KB · 10 lines
https://api.xrpl.to/v1/holders/position/0dd550278b74cb6690fdae351e8e0df3/rJqiMb94hyz41SBTNr2AyPNW8AzELa8nE
{
  "success": true,
  "took": 1,
  "account": "rJqiMb94hyz41SBTNr2AyPNW8AzELa8nE",
  "md5": "0dd550278b74cb6690fdae351e8e0df3",
  "balance": 0,
  "holding": 0,
  "rank": null,
  "holders": 67329
}
Shapeas documented
{
  success,
  took,
  account,
  md5,
  balance,
  holding (% of supply,
  2dp rounded down — same figure as /holders/list),
  rank (null until the worker ranks the token),
  holders
}

What it does

One account's stake in a token — balance, share of supply and rank, without building the holder list

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