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

# WalletChartData

> A single bucket in a walletChart response: aggregated wallet activity at one timestamp.

### TypeScript shape

```ts theme={null}
interface WalletChartData {
  timestamp: number;
  resolution: string;
  volumeUsd: string;
  volumeUsdAll: string;
  realizedProfitUsd: string;
  swaps: number;
}
```

<ResponseField name="timestamp" type="Int!">Bucket start timestamp (unix seconds).</ResponseField>
<ResponseField name="resolution" type="String!">Bucket resolution.</ResponseField>
<ResponseField name="volumeUsd" type="String!">Swap volume in USD for the bucket (filtered, excludes scam / low-quality tokens).</ResponseField>
<ResponseField name="volumeUsdAll" type="String!">Total swap volume in USD for the bucket (includes all swaps).</ResponseField>
<ResponseField name="realizedProfitUsd" type="String!">Realized profit in USD for the bucket.</ResponseField>
<ResponseField name="swaps" type="Int!">Number of swaps in the bucket.</ResponseField>
