Live
list_leaderboard_traders
polymarket.comReturns traders ranked by profit or volume plus biggest wins for common timeframes from https://polymarket.com.
Parameters3
Runs8
Updated3d ago
Degraded8 runs · 75% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_leaderboard_traders?
Returns traders ranked by profit or volume plus biggest wins for common timeframes from https://polymarket.com. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass metric, timeframe, limit and get the result back without maintaining a scraper.
Response
{
"metric": "<string>",
"traders": [
{}
],
"category": "<string>",
"timeframe": "<string>",
"biggest_wins": [
{}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/f64d3d6d-6282-41ea-998e-b267d4c0d3d5/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "f64d3d6d-6282-41ea-998e-b267d4c0d3d5",
"variables": {
"metric": "profit",
"timeframe": "monthly",
"limit": 20
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="f64d3d6d-6282-41ea-998e-b267d4c0d3d5") — the "list_leaderboard_traders" function, which returns traders ranked by profit or volume plus biggest wins for common timeframes from https://polymarket.com.. It takes metric (str), timeframe (str), limit (int). Return the result as structured JSON.