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

# DetailedWalletStats

> Rich, windowed performance stats for a wallet: volume, realized profit, win/loss, best trade, and per-network decomposition.

### TypeScript shape

```ts theme={null}
interface DetailedWalletStats {
  walletAddress: string;
  lastTransactionAt: number;
  transactionCount: number;
  networkSpecificStats: NetworkWalletStats[] | null;
  networkBreakdown: NetworkBreakdown[] | null;
  labels: string[];
  scammerScore: number | null;
  botScore: number | null;
  statsDay1: WindowedWalletStats | null;
  statsWeek1: WindowedWalletStats | null;
  statsDay30: WindowedWalletStats | null;
  statsYear1: WindowedWalletStats | null;
  wallet: Wallet;
}
```

<ResponseField name="walletAddress" type="String!">Wallet address.</ResponseField>
<ResponseField name="lastTransactionAt" type="Int!">Last transaction timestamp (unix seconds).</ResponseField>
<ResponseField name="transactionCount" type="Int!">Total wallet activity transaction count.</ResponseField>
<ResponseField name="networkBreakdown" type="[NetworkBreakdown!]">Per-network decomposition of stats (only when `includeNetworkBreakdown` is `true`). See [NetworkBreakdown](/api-reference/graphql/types/NetworkBreakdown).</ResponseField>
<ResponseField name="labels" type="[String!]!">Wallet labels (e.g. `cex`, `bot`, `sniper`).</ResponseField>
<ResponseField name="scammerScore" type="Int">Scammer score (0-100).</ResponseField>
<ResponseField name="botScore" type="Int">Bot score (0-100).</ResponseField>
<ResponseField name="statsDay1" type="WindowedWalletStats">Aggregated windowed stats for the last 24h (all networks). See [WindowedWalletStats](/api-reference/graphql/types/WindowedWalletStats).</ResponseField>
<ResponseField name="statsWeek1" type="WindowedWalletStats">Aggregated windowed stats for the last 7 days.</ResponseField>
<ResponseField name="statsDay30" type="WindowedWalletStats">Aggregated windowed stats for the last 30 days.</ResponseField>
<ResponseField name="statsYear1" type="WindowedWalletStats">Aggregated windowed stats for the last 1 year (only when `includeStatsYear1` is `true`).</ResponseField>
<ResponseField name="wallet" type="Wallet!">Identity and funding metadata for the wallet. See [Wallet](/api-reference/graphql/types/Wallet).</ResponseField>

<Warning>
  The following field is deprecated — use `networkBreakdown` instead. It remains in the schema for backwards compatibility and may be removed in a future version.
</Warning>

<ResponseField name="networkSpecificStats" type="[NetworkWalletStats!]" deprecated>Deprecated — use `networkBreakdown` instead. See [NetworkWalletStats](/api-reference/graphql/types/NetworkWalletStats).</ResponseField>
