Skip to main content
GET
/
v2
/
leaderboard
Leaderboard
curl --request GET \
  --url https://api.example.com/v2/leaderboard
{
  "traders": [
    {
      "rank": 1,
      "wallet": "0xc2e7800b5af46e6093872b177b7a5e7f0563be51",
      "name": "beachboy4",
      "pnl": 4320443.26,
      "volume": 12846475.79,
      "profileImage": "https://..."
    }
  ],
  "period": "monthly",
  "sort": "profit",
  "count": 20
}
Returns the top 20 Polymarket traders for the specified time period and ranking metric.
period
string
default:"monthly"
Time period. One of: daily, weekly, monthly, all.
sort
string
default:"profit"
Ranking metric. One of: profit, volume.
{
  "traders": [
    {
      "rank": 1,
      "wallet": "0xc2e7800b5af46e6093872b177b7a5e7f0563be51",
      "name": "beachboy4",
      "pnl": 4320443.26,
      "volume": 12846475.79,
      "profileImage": "https://..."
    }
  ],
  "period": "monthly",
  "sort": "profit",
  "count": 20
}
Data refreshes every 2-3 minutes. Rate limit: 1 request per second.