> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mobula.io/llms.txt
> Use this file to discover all available pages before exploring further.

# HoldersInput

> Input for holders query: token, pagination, sort, and filter options.

### TypeScript shape

```ts theme={null}
interface HoldersInput {
  tokenId: string;
  limit?: number | null;
  cursor?: string | null;
  sort?: HoldersInputSort | null;
  filterContracts?: boolean | null;
}
```

<ResponseField name="tokenId" type="String!" required>Token ID (e.g. tokenAddress:networkId).</ResponseField>
<ResponseField name="limit" type="Int">Max number of holders to return.</ResponseField>
<ResponseField name="cursor" type="String">Pagination cursor from previous response.</ResponseField>
<ResponseField name="sort" type="HoldersInputSort">Sort order. See [HoldersInputSort](/api-reference/graphql/types/HoldersInputSort).</ResponseField>
<ResponseField name="filterContracts" type="Boolean">Whether to exclude contract addresses from results.</ResponseField>
