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

# BalancesResponse

> Paginated response for the balances query.

### TypeScript shape

```ts theme={null}
interface BalancesResponse {
  items: Balance[];
  cursor: string | null;
}
```

<ResponseField name="items" type="[Balance!]!">Array of balance objects. See [Balance](/api-reference/graphql/types/Balance).</ResponseField>
<ResponseField name="cursor" type="String">Cursor for fetching the next page. `null` if no more results.</ResponseField>
