OpenSea · Example Payload

Get_Collection_Holders

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Get_Collection_Holders is an example object payload from OpenSea, with 5 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathrequestresponse

Example Payload

Raw ↑
{
  "operationId": "get_collection_holders",
  "method": "GET",
  "path": "/api/v2/collections/{slug}/holders",
  "request": {
    "parameters": {
      "slug": "string",
      "limit": 0,
      "cursor": "string",
      "sort_direction": "string",
      "owned_by": "string"
    }
  },
  "response": {
    "200": {
      "holders": [
        {
          "address": "string",
          "quantity": 0,
          "percentage": 0.0
        }
      ],
      "next": "string"
    }
  }
}