GET /nft/collections/{slug}/listings/distribution
GET

/v1/nft/collections/{slug}/listings/distribution

Listed-price distribution vs floor (buckets at 1x/1.25x/1.5x/2x/3x/5x/10x floor), floor/median/avg/max

AuthNone — works without a key

Request

GEThttps://api.xrpl.to/v1/nft/collections/fuzzybears/listings/distribution
Path parameterValueDescription
slugA collection slug, or its identity as issuer:taxon
curl 'https://api.xrpl.to/v1/nft/collections/fuzzybears/listings/distribution'

Response

200Example response5 ms · just now · 0.7 KB · 48 lines
https://api.xrpl.to/v1/nft/collections/fuzzybears/listings/distribution
{
  "collection": {
    "slug": "fuzzybears",
    "name": "Fuzzybears"
  },
  "total": 478,
  "floor": 554,
  "median": 2500,
  "avg": 69342.89848953974,
  "max": 9859859,
  "buckets": [
    {
      "min": 554,
      "max": 692.5,
      "multLo": 1,
      "multHi": 1.25,
      "count": 17
    },
    {
      "min": 692.5,
      "max": 831,
      "multLo": 1.25,
      "multHi": 1.5,
      "count": 14
    },
    {
      "min": 831,
      "max": 1108,
      "multLo": 1.5,
      "multHi": 2,
      "count": 70
    },
    {
      "min": 1108,
      "max": 1662,
      "multLo": 2,
      "multHi": 3,
      "count": 78
    },
    {
      "min": 1662,
      "max": 2770,
      "multLo": 3,
      "multHi": 5,
      "count": 69
    }
  ]
}

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

What it does

Listed-price distribution vs floor (buckets at 1x/1.25x/1.5x/2x/3x/5x/10x floor), floor/median/avg/max

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