GET /nft/collections/{slug}/ownership
GET

/v1/nft/collections/{slug}/ownership

Ownership distribution

AuthNone — works without a key

Request

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

Response

200Example response3 ms · just now · 0.7 KB · 33 lines
https://api.xrpl.to/v1/nft/collections/fuzzybears/ownership
{
  "slug": "fuzzybears",
  "name": "Fuzzybears",
  "totalNFTs": 3210,
  "totalOwners": 715,
  "topHolders": [
    {
      "address": "rs8AJUQcw9gL4Q3QbY5Hyy6nBQVBmpZ1pB",
      "count": 76,
      "percentage": "2.37"
    },
    {
      "address": "rp5cbpF6peihKW4TuBJZbL8U9atgDFUJhi",
      "count": 72,
      "percentage": "2.24"
    },
    {
      "address": "rPSQFQyf43vcj2ps2neDM1nD8k3qFk1EE4",
      "count": 60,
      "percentage": "1.87"
    },
    {
      "address": "rEshbhHXj7qQ44eYMgwWyWB6v8QkeSAYS4",
      "count": 58,
      "percentage": "1.81"
    },
    {
      "address": "rEfPFDEhuScHZXMzTKQzPmqxGwNqfp8STX",
      "count": 55,
      "percentage": "1.71"
    }
  ]
}

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

What it does

Ownership distribution

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