GET /nft/collections/{slug}/holders/history
GET

/v1/nft/collections/{slug}/holders/history

Daily holder-count history

AuthNone — works without a key

Request

GEThttps://api.xrpl.to/v1/nft/collections/fuzzybears/holders/history
Path parameterValueDescription
slugA collection slug, or its identity as issuer:taxon
Query parameterValueDescription
fromunix ms
tounix ms
curl 'https://api.xrpl.to/v1/nft/collections/fuzzybears/holders/history'

Response

200Example response6 ms · just now · 0.5 KB · 37 lines
https://api.xrpl.to/v1/nft/collections/fuzzybears/holders/history
{
  "collection": {
    "slug": "fuzzybears",
    "name": "Fuzzybears"
  },
  "points": [
    {
      "date": "2025-03-21",
      "holders": 478
    },
    {
      "date": "2025-03-22",
      "holders": 475
    },
    {
      "date": "2025-03-23",
      "holders": 475
    },
    {
      "date": "2025-03-24",
      "holders": 478
    },
    {
      "date": "2025-03-25",
      "holders": 465
    }
  ],
  "summary": {
    "first": 478,
    "last": 715,
    "peak": {
      "date": "2026-09-18",
      "holders": 716
    },
    "days": 549
  }
}

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

What it does

Daily holder-count history

A collection is its slug, or its on-chain identity as issuer:taxon. Each NFT in it comes back with its NFTokenID, the id every NFT endpoint takes. Go to NFT →
OpenAPI