GET /holders/empty/{id}
GET

/v1/holders/empty/{id}

Zero-balance trustlines (dust/airdrop accounts; precomputed bot accounts excluded)

AuthNone — works without a key

Request

GEThttps://api.xrpl.to/v1/holders/empty/0dd550278b74cb6690fdae351e8e0df3
Path parameterValueDescription
idA token id: its md5, slug or issuer_currency
Query parameterValueDescription
limitint (1-1000; omit to return the full list)
offsetint (default: 0, only with limit)
curl 'https://api.xrpl.to/v1/holders/empty/0dd550278b74cb6690fdae351e8e0df3'

Response

200Example response564 ms · just now · 0.3 KB · 13 lines
https://api.xrpl.to/v1/holders/empty/0dd550278b74cb6690fdae351e8e0df3
{
  "success": true,
  "accounts": [
    "r133nszTga66143GaVwWUS6zzQrTGPf7d",
    "r13cHG7iwsHMFeFkVpf3NZYr1dRFiTS9v",
    "r13juZi2czwU1cBNNKzVNPc63FN9K1iHM",
    "r13m9n9y7TVwFLfJnsMh1tGPRsXjMiaKh",
    "r15eBvTe1e6XSK5PUbTxdwiods7fWLqJx"
  ],
  "count": 30726,
  "total": 30726,
  "excluded": 32
}

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

Shapeas documented
{
  success,
  accounts[],
  count,
  total,
  excluded,
  offset?,
  limit?
}

What it does

Zero-balance trustlines (dust/airdrop accounts; precomputed bot accounts excluded)

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