Skip to main content

TypeScript shape

interface HoldersInput {
  tokenId: string;
  limit?: number | null;
  cursor?: string | null;
  sort?: HoldersInputSort | null;
  filterContracts?: boolean | null;
}
tokenId
String!
required
Token ID (e.g. tokenAddress:networkId).
limit
Int
Max number of holders to return.
cursor
String
Pagination cursor from previous response.
sort
HoldersInputSort
Sort order. See HoldersInputSort.
filterContracts
Boolean
Whether to exclude contract addresses from results.