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

# NetworkBreakdown

> Per-network windowed statistics for a wallet, returned inside DetailedWalletStats.

### TypeScript shape

```ts theme={null}
interface NetworkBreakdown {
  networkId: number;
  nativeTokenBalance: string;
  statsDay1: WindowedWalletStats | null;
  statsWeek1: WindowedWalletStats | null;
  statsDay30: WindowedWalletStats | null;
  statsYear1: WindowedWalletStats | null;
}
```

<ResponseField name="networkId" type="Int!">Network ID.</ResponseField>
<ResponseField name="nativeTokenBalance" type="String!">Native token balance on this network.</ResponseField>
<ResponseField name="statsDay1" type="WindowedWalletStats">Windowed stats for the last 24h on this network. See [WindowedWalletStats](/api-reference/graphql/types/WindowedWalletStats).</ResponseField>
<ResponseField name="statsWeek1" type="WindowedWalletStats">Windowed stats for the last 7 days on this network.</ResponseField>
<ResponseField name="statsDay30" type="WindowedWalletStats">Windowed stats for the last 30 days on this network.</ResponseField>
<ResponseField name="statsYear1" type="WindowedWalletStats">Windowed stats for the last 1 year on this network (only when `includeStatsYear1` is `true`).</ResponseField>
