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

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

Floor price history

AuthNone — works without a key

Request

GEThttps://api.xrpl.to/v1/nft/collections/fuzzybears/floor/history
Path parameterValueDescription
slugA collection slug, or its identity as issuer:taxon
Query parameterValueDescription
limitint (max 500, default 100)
curl 'https://api.xrpl.to/v1/nft/collections/fuzzybears/floor/history'

Response

200Example response13 ms · just now · 0.8 KB · 38 lines
https://api.xrpl.to/v1/nft/collections/fuzzybears/floor/history
{
  "collection": {
    "slug": "fuzzybears",
    "name": "Fuzzybears"
  },
  "history": [
    {
      "_id": "6ab0d48bc2e14a1efdc01f34",
      "cid": "33920d4b2f0346fba52ece9f05c54f5f",
      "floor": 554,
      "time": 1789973643878
    },
    {
      "_id": "6ab0c679c2e14a1efdbffb00",
      "cid": "33920d4b2f0346fba52ece9f05c54f5f",
      "floor": 554,
      "time": 1789970041059
    },
    {
      "_id": "6ab0b864c2e14a1efdbfd6be",
      "cid": "33920d4b2f0346fba52ece9f05c54f5f",
      "floor": 554,
      "time": 1789966436265
    },
    {
      "_id": "6ab0aa4fc2e14a1efdbfb28a",
      "cid": "33920d4b2f0346fba52ece9f05c54f5f",
      "floor": 554,
      "time": 1789962831542
    },
    {
      "_id": "6ab09c3fc2e14a1efdbf8e3f",
      "cid": "33920d4b2f0346fba52ece9f05c54f5f",
      "floor": 554,
      "time": 1789959231447
    }
  ]
}

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

What it does

Floor price 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