Skip to main content

Returns

holders
HoldersResponse!
Paginated list of holders for a token. See HoldersResponse.

Arguments

input
HoldersInput!
required
Token and pagination/sort options. See HoldersInput.

Example

query Holders {
  holders(input: {
    tokenId: "0xdac17f958d2ee523a2206206994597c13d831ec7:1",
    limit: 10,
    sort: { attribute: BALANCE, direction: DESC }
  }) {
    count
    cursor
    status
    top10HoldersPercent
    items {
      address
      balance
      shiftedBalance
      balanceUsd
    }
  }
}

Playground