---
title: "Get Wallet Chart"
method: GET
path: "/v2/pnl/wallets/{wallet}/chart"
tags: ["Wallet"]
---

# Get Wallet Chart

`GET /v2/pnl/wallets/{wallet}/chart`

Returns daily time-series points for charting wallet PnL, volume, and activity. Supports backward pagination with `time_from` and `time_to` and includes a computed performance summary.

## Path parameters

- `wallet` string, required

## Query parameters

- `time_from` integer
- `time_to` integer

## Response `200`

Successful response.

- object
  - `wallet` string
  - `identity` Identity — Unified wallet identity. Only fields with known values are returned; a wallet can carry multiple tags at once.
    - `name` string, nullable — Display name, if known.
    - `twitter` string, nullable — Twitter/X handle, if known.
    - `avatar` string, uri, nullable — Avatar image URL.
    - `type` string, nullable — Primary label for single-badge UIs, such as `kol`, `developer`, `pool`, `bot`, `hacker`, `spam_dusting`, `exchange`, or a platform tag.
    - `tags` string[] — All resolved labels for the wallet, including KOL, platform, pool, developer, bot, arbitrage, hacker, spam-dusting, or exchange tags.
    - `platforms` string[] — Normalized trading frontend tags such as `axiom`, `bloom`, or `photon`. Query filters also accept `axiom-flash`, which is normalized to `axiom` in identity responses.
    - `bot` object
      - `name` string, nullable
      - `avatar` string, uri, nullable
    - `pool` object
      - `program` string, nullable
      - `poolAddress` string, nullable
    - `developer` object
      - `token` string, nullable
      - `via` string[]
      - `pools` string[]
      - `creationTx` string, nullable
      - `createdAt` integer, nullable — Unix timestamp in seconds.
    - `hacker` object — Curated exploit/scam wallet label, when known.
      - `label` string, nullable
    - `spamDusting` object — Curated spam-dusting wallet label, when known.
      - `label` string, nullable
    - `exchange` object — Known centralized exchange hot wallet label, when known.
      - `name` string, nullable
  - `points` ChartPoint[]
    - `date` string, date
    - `time` integer — Unix seconds (midnight UTC of this date).
    - `pnl` object
      - `realized` number, nullable
      - `total` number, nullable
    - `invested` number, nullable
    - `proceeds` number, nullable
    - `activity` object
      - `realizedPnl` number, nullable
      - `buys` integer
      - `sells` integer
      - `volume` number, nullable
      - `avgHoldTimeSecs` integer, nullable
    - `counts` object
      - `buys` integer — Cumulative buy count.
      - `sells` integer — Cumulative sell count.
      - `tokensTraded` integer — Cumulative distinct tokens.
  - `summary` object
    - `days` object
      - `trading` integer
      - `positive` integer
      - `negative` integer
      - `breakEven` integer
    - `totals` object
      - `realizedPnl` number, nullable
      - `volume` number, nullable
    - `winRate` number, nullable
    - `bestDay` object, nullable
      - `date` string, date
      - `realizedPnl` number, nullable
    - `worstDay` object, nullable
      - `date` string, date
      - `realizedPnl` number, nullable
    - `streaks` object
      - `positive` integer
      - `negative` integer
      - `currentPositive` integer
      - `currentNegative` integer
    - `drawdown` object
      - `amount` number, nullable
      - `percent` number, nullable
    - `averages` object
      - `dailyVolume` number, nullable
      - `dailyRealizedPnl` number, nullable
      - `holdTimeSecs` integer, nullable
  - `pagination` object
    - `count` integer
    - `hasMore` boolean — True if there are older data points available.
    - `nextTimeTo` integer, nullable — Pass this as `time_to` to get the next (older) page of chart data.

## Other responses

- `400` — Invalid request parameters.
- `500` — Server error.

---

[API](https://skmtc.net/solanatracker/apis/solana-tracker-data-api.md) · [All operations](https://skmtc.net/solanatracker/apis/solana-tracker-data-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/solanatracker/solana-tracker-data-api/versions/c07c6f82d0c4/schema)
