> ## Documentation Index
> Fetch the complete documentation index at: https://docs.codex.io/llms.txt
> Use this file to discover all available pages before exploring further.

# WalletChartResponse

> The response for a chart of a wallet's activity.

<div data-generated>
  ## GraphQL

  ```
  type WalletChartResponse {
    walletAddress: String!
    networkId: Int
    range: WalletChartRange!
    resolution: String!
    data: [WalletChartData!]!
    backfillState: WalletAggregateBackfillState
  }

  type WalletChartRange {
    start: Int!
    end: Int!
  }

  type WalletChartData {
    timestamp: Int!
    resolution: String!
    volumeUsd: String!
    volumeUsdAll: String!
    realizedProfitUsd: String!
    swaps: Int!
  }

  enum WalletAggregateBackfillState {
    BackfillComplete
    BackfillInProgress
    BackfillCanceled
    BackfillBlocked
    BackfillRequestReceived
    BackfillNotFound
  }
  ```

  ### Used By

  **Returned by**

  * [walletChart](/api-reference/queries/walletchart.md): Returns a chart of a wallet's activity.
</div>
