OpenSea · Schema

TokenHolderResponse

A holder of a token

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Properties

Name Type Description
quantity number Token quantity in display units
percentage_held number Percentage of total supply held by this address
usd_value number USD value of the holding
owner_address string Wallet address of the holder
owner_display_name string Display name of the holder
View JSON Schema on GitHub

JSON Schema

TokenHolderResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://opensea.io/schemas/TokenHolderResponse",
  "title": "TokenHolderResponse",
  "type": "object",
  "description": "A holder of a token",
  "properties": {
    "quantity": {
      "type": "number",
      "description": "Token quantity in display units"
    },
    "percentage_held": {
      "type": "number",
      "format": "float",
      "description": "Percentage of total supply held by this address"
    },
    "usd_value": {
      "type": "number",
      "description": "USD value of the holding"
    },
    "owner_address": {
      "type": "string",
      "description": "Wallet address of the holder"
    },
    "owner_display_name": {
      "type": "string",
      "description": "Display name of the holder"
    }
  },
  "required": [
    "owner_address",
    "quantity"
  ]
}