OpenSea · Schema

CollectionHoldersPaginatedResponse

Paginated list of collection holders

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Properties

Name Type Description
holders array List of holders
next string Cursor for the next page of results
View JSON Schema on GitHub

JSON Schema

CollectionHoldersPaginatedResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://opensea.io/schemas/CollectionHoldersPaginatedResponse",
  "title": "CollectionHoldersPaginatedResponse",
  "type": "object",
  "description": "Paginated list of collection holders",
  "properties": {
    "holders": {
      "type": "array",
      "description": "List of holders",
      "items": {
        "$ref": "#/components/schemas/CollectionHolderResponse"
      }
    },
    "next": {
      "type": "string",
      "description": "Cursor for the next page of results"
    }
  },
  "required": [
    "holders"
  ]
}