---
title: "Get KOL Leaderboard"
method: GET
path: "/v2/pnl/leaderboard/kols"
tags: ["Leaderboard"]
---

# Get KOL Leaderboard

`GET /v2/pnl/leaderboard/kols`

Ranks tracked KOL wallets by all-time performance. Use it to compare lifetime realized and unrealized PnL, ROI, trade count, and recency across known wallets.

## Query parameters

- `sort` 'total' | 'realized' | 'unrealized' | 'invested' | 'proceeds' | 'value' | 'trades' | 'tokens' | 'roi' | 'win_percentage' | 'last_trade'
- `direction` 'asc' | 'desc'
- `limit` integer
- `cursor` string

## Response `200`

Successful response.

- object
  - `traders` object[]
    - `wallet` string
    - `pnl` PnlBlock — Realized, unrealized, and total profit/loss in USD.
      - `realized` number, nullable — Profit/loss from closed trades (tokens fully or partially sold).
      - `realizedRaw` number, nullable — Unfiltered realized PnL before `pnlMode` adjustments. Present on position rows and leaderboard period stats when available.
      - `unrealized` number, nullable — Paper profit/loss on tokens still held, based on current market price.
      - `total` number, nullable — Sum of realized + unrealized PnL.
    - `invested` number, nullable
    - `proceeds` number, nullable
    - `openPositions` object
      - `cost` number, nullable
      - `value` number, nullable
    - `counts` object
      - `buys` integer
      - `sells` integer
      - `trades` integer
      - `tokensTraded` integer
      - `tokensHeldEver` integer
    - `averages` object
      - `buy` number, nullable
      - `sell` number, nullable
    - `tokens` object
      - `profitable` integer — Number of tokens closed at a profit.
      - `losing` integer — Number of tokens closed at a loss.
      - `closed` integer — Total tokens where position is fully closed.
    - `winRate` number, nullable — Percentage of closed positions that were profitable.
    - `roi` number, nullable — Return on investment percentage.
    - `timing` object
      - `firstTrade` integer, nullable
      - `lastTrade` integer, nullable
    - `updatedAt` string, date-time, nullable
    - `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
  - `pagination` Pagination — Cursor-based pagination metadata.
    - `hasMore` boolean, required — Whether more pages exist after this one.
    - `nextCursor` string, nullable, required — Opaque cursor to pass as `?cursor=` for the next page. Null when there are no more results.
    - `count` integer, required — Number of items returned in this page.
    - `total` integer, required — Total number of matching items across all pages.
    - `pnlMode` 'strict' | 'adjusted' | 'raw' — Resolved PnL treatment mode when the endpoint supports `pnlMode`.
    - `enrich` string[] — List of enrichment modules applied to the response when supported.

## Other responses

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

---

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