> ## 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.

# HoldersResponse

> Paginated list of token holders with count and status.

### TypeScript shape

```ts theme={null}
interface HoldersResponse {
  items: Balance[];
  count: number;
  cursor: string | null;
  status: HoldersStatus;
  top10HoldersPercent: number | null;
}
```

<ResponseField name="items" type="[Balance!]!">List of holder balances. See [Balance](/api-reference/graphql/types/Balance).</ResponseField>
<ResponseField name="count" type="Int!">Total count of holders.</ResponseField>
<ResponseField name="cursor" type="String">Cursor for next page.</ResponseField>
<ResponseField name="status" type="HoldersStatus!">Whether holder data is enabled. See [HoldersStatus](/api-reference/graphql/types/HoldersStatus).</ResponseField>
<ResponseField name="top10HoldersPercent" type="Float">Percentage held by top 10 holders.</ResponseField>
