GET /nft/collections/{slug}/sparkline
GET

/v1/nft/collections/{slug}/sparkline

Collection floor price sparkline

AuthNone — works without a key

Request

GEThttps://api.xrpl.to/v1/nft/collections/fuzzybears/sparkline
Path parameterValueDescription
slugA collection slug, or its identity as issuer:taxon
Query parameterValueDescription
period7d|30d|365d
lightweightbool
maxPointsint (2-500, default 20)
curl 'https://api.xrpl.to/v1/nft/collections/fuzzybears/sparkline'

Response

200Example response3 ms · just now · 0.3 KB · 23 lines
https://api.xrpl.to/v1/nft/collections/fuzzybears/sparkline
{
  "chartColor": "#ed5565",
  "period": "30d",
  "percentChange": "-26.62",
  "data": {
    "prices": [
      755,
      695,
      746,
      695,
      695
    ],
    "timestamps": [
      "2026-08-23",
      "2026-08-25",
      "2026-08-26",
      "2026-08-28",
      "2026-08-29"
    ],
    "max": 755,
    "min": 548
  }
}

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

What it does

Collection floor price sparkline

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