Polymarket Smart Money Tracker
Track top Polymarket wallets, positions, PnL, and smart money signals in real time
Hourly-updated intelligence on the most profitable Polymarket traders. Track wallet PnL, win rates, position sizes, and aggregate smart money flow signals across all active prediction markets. Identify where informed capital is moving before the crowd.
How customers use this
Copy trading proven winners
Follow the top 50 wallets ranked by PnL — they've demonstrated edge across hundreds of markets. Mirror their positions to capture the same directional bets with proven track records.
Contrarian signal detection
When smart money is 80% concentrated on one side of a market, the price is likely already reflecting that view. Use extreme smart money consensus as a contrarian indicator to find mispriced markets.
Market making around smart money clusters
See where smart money positions cluster to set your own bid/ask levels. Provide liquidity at price points where informed traders are active to maximize fill rates and fee capture.
Sample data
Example responses from the API. Each query returns structured JSON.
GET /api/v1/pm/whales?sort=pnl&limit=1
{
"wallet": "0x8a2f...c4e1",
"total_pnl_usd": 2841000,
"win_rate": 0.68,
"markets_traded": 312,
"avg_position_size": 45200,
"active_positions": 18,
"last_trade": "2025-12-01T13:41:00Z"
} GET /api/v1/pm/signals?market_id=0x1234...abcd
{
"market_id": "0x1234...abcd",
"question": "Will BTC exceed $150k by March 2026?",
"smart_money_yes_pct": 72,
"smart_money_volume_usd": 891000,
"retail_yes_pct": 54,
"divergence": 18,
"signal_strength": "strong"
} GET /api/v1/pm/movements?hours=24
{
"movements": [
{ "wallet": "0x8a2f...c4e1", "market": "BTC > $150k by Mar 2026", "side": "YES", "amount_usd": 125000, "timestamp": "2025-12-01T08:12:00Z" }
],
"total_movements": 89,
"total_volume_usd": 3412000
} Use cases
- ✓ Follow high-conviction Polymarket traders
- ✓ Detect smart money consensus on upcoming events
- ✓ Monitor large position changes in real time
- ✓ Build quantitative prediction market strategies
- ✓ Identify contrarian opportunities against whale positions
Response fields
| Field | Type | Description |
|---|---|---|
| address | string | Wallet address of the trader |
| total_pnl | number | Cumulative profit/loss across all markets |
| total_volume | number | Total trading volume |
| win_rate | number | Percentage of profitable positions |
| market_count | integer | Number of markets traded |
| signal_strength | number | Smart money directional conviction (0-1) |
| smart_money_yes | number | Aggregate whale volume on Yes outcome |
| smart_money_no | number | Aggregate whale volume on No outcome |
Example queries
Top wallets by PnL
GET /api/v1/pm/whales?sort=pnl&limit=50 Returns the highest-PnL Polymarket wallets
Wallet detail with positions
GET /api/v1/pm/whales/0xD91cfAfB4F1CeC83b2A291E0CD9b7b06B89FbD49 Full wallet profile with all open positions
Smart money signals
GET /api/v1/pm/signals?market_id=0x1234 Whale consensus direction for a specific market
Large position changes
GET /api/v1/pm/movements?hours=24 Significant position changes in the last 24 hours
Free dataset stats
GET /api/v1/pm/stats Returns coverage and update metadata