Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.solanatracker.io/llms.txt

Use this file to discover all available pages before exploring further.

KOL Leaderboards

KOLs are tracked wallets with a public identity. Each entry can include a name, Twitter handle, and avatar. KOLScan leaderboard with KOL activity calendar and ranked wallet performance

All-Time

The KOL leaderboard ranks KOL wallets by lifetime performance.
curl "https://data.solanatracker.io/v2/pnl/leaderboard/kols?sort=realized&direction=desc&limit=25" \
  -H "x-api-key: YOUR_API_KEY"

Sort Options

FieldDescription
totalTotal PnL (realized + unrealized)
realizedRealized PnL
unrealizedUnrealized PnL
investedTotal invested
proceedsTotal proceeds from sells
tradesNumber of trades
tokensNumber of tokens traded
roiReturn on investment
win_percentageWin rate
last_tradeMost recent trade

By Time Period

The period leaderboard ranks KOLs within a specific window. Use shortcuts like 7d, 30d, or set explicit start/end dates.
# Last 7 days
curl "https://data.solanatracker.io/v2/pnl/leaderboard/kols/period?period=7d&sort=realized" \
  -H "x-api-key: YOUR_API_KEY"

# Custom range
curl "https://data.solanatracker.io/v2/pnl/leaderboard/kols/period?start=2025-03-01&end=2025-03-31" \
  -H "x-api-key: YOUR_API_KEY"

KOLs = named wallets

Best when identity matters and you want to compare public figures.

Top traders = raw performance

Better when you care about results regardless of reputation.

Monthly Calendar

The calendar endpoint returns aggregate KOL performance per day for a given month. Great for heatmap visualizations.
curl "https://data.solanatracker.io/v2/pnl/leaderboard/kols/calendar?year=2025&month=3" \
  -H "x-api-key: YOUR_API_KEY"
Color each day by total KOL PnL to quickly spot market-wide trends.

Single Day

The daily breakdown endpoint shows each KOL’s trades and PnL for one specific day.
curl "https://data.solanatracker.io/v2/pnl/leaderboard/kols/date?date=2025-03-15" \
  -H "x-api-key: YOUR_API_KEY"

Solana Traders Leaderboard

The Solana Traders Leaderboard ranks Solana trading wallets over a supported rolling window (1, 7, 30, or 90 days). Unlike KOL leaderboards, this covers all wallets, not just known ones.
curl "https://data.solanatracker.io/v2/pnl/leaderboard/top?days=30&sort=realized&direction=desc&limit=50" \
  -H "x-api-key: YOUR_API_KEY"

Filters

Use minimum thresholds to filter out lucky one-offs: Photon leaderboard filtered to wallets trading through Photon Bloom leaderboard filtered to wallets trading through Bloom
ParameterDefaultDescription
days90Rolling window in days. Use 1, 7, 30, or 90 for exact supported windows.
sortrealizedrealized, volume, days, roi, win_percentage, trades, tokens
minTrades20Minimum number of trades
minInvested1Minimum total USD invested
minDays3Minimum active trading days
minWinRateMinimum win percentage
minRoiMinimum ROI percentage
minClosedTokensMinimum number of closed positions
maxSingleTokenPctMaximum % of PnL from a single token (filters one-hit wonders)
excludeArbitragetrueArbitrage wallets are excluded by default. Set to false to include them.
platformFilter by platform (axiom, bloom, photon). Comma-separated for multiple. axiom-flash is accepted as an axiom alias.
pnlModestrictstrict, adjusted, or raw. See Essentials.
Coverage: the top-traders leaderboard ranks the top 500k wallets per period. A wallet can trade and still not appear in this ranked list. To inspect any wallet directly, call /v2/pnl/wallets/:wallet.
Try maxSingleTokenPct=30 + minDays=10 + minTrades=50 to find consistently profitable traders, not just one-hit wonders.

Next: Batch Operations

After you shortlist wallets, use batch endpoints to enrich them in bulk.

Wallet Analysis

Drill into a single wallet’s full history and risk profile.