OpenSea · Example Payload

Get_Token_Holders

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Get_Token_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_token_holders",
  "method": "GET",
  "path": "/api/v2/chain/{chain}/token/{address}/holders",
  "request": {
    "parameters": {
      "chain": "string",
      "address": "string",
      "limit": 0,
      "cursor": "string"
    }
  },
  "response": {
    "200": {
      "holders": [
        {
          "quantity": 0.0,
          "percentage_held": 0.0,
          "usd_value": 0.0,
          "owner_address": "string",
          "owner_display_name": "string"
        }
      ],
      "total_count": 0,
      "distribution": {
        "total_holders": 0,
        "top_one_percent_concentration": 0.0,
        "health_score": 0,
        "health_label": "STRONG"
      },
      "next": "string"
    }
  }
}