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

# DetailedWalletStatsInput

> Input object for the detailedWalletStats query.

### TypeScript shape

```ts theme={null}
interface DetailedWalletStatsInput {
  walletAddress: string;
  networkId?: number | null;
  timestamp?: number | null;
  includeNetworkBreakdown?: boolean | null;
}
```

<ResponseField name="walletAddress" type="String!">Wallet address to fetch stats for.</ResponseField>
<ResponseField name="networkId" type="Int">Optional network ID to scope the aggregate stats to a single chain.</ResponseField>
<ResponseField name="timestamp" type="Int">Optional reference timestamp (unix seconds). Defaults to now.</ResponseField>
<ResponseField name="includeNetworkBreakdown" type="Boolean">Include the per-network breakdown (default: false).</ResponseField>
<ResponseField name="includeStatsYear1" type="Boolean">Include the 1-year window stats (default: false — the most expensive to compute).</ResponseField>
