list_leaderboard_players
api.chess.comReturns the top ranked players for a selected public leaderboard category from https://api.chess.com, including every populated player field, rating score, title, record, trends, and profile links.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_leaderboard_players?
Returns the top ranked players for a selected public leaderboard category from https://api.chess.com, including every populated player field, rating score, title, record, trends, and profile links. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass category, limit and get the result back without maintaining a scraper.
Response
{
"players": [
{}
],
"category": "<string>",
"returned_count": 0,
"available_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/b9051e4c-4b1e-438b-aa12-ce3374f424c3/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "b9051e4c-4b1e-438b-aa12-ce3374f424c3",
"variables": {
"category": "blitz",
"limit": 10
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="b9051e4c-4b1e-438b-aa12-ce3374f424c3") — the "list_leaderboard_players" function, which returns the top ranked players for a selected public leaderboard category from https://api.chess.com, including every populated player field, rating score, title, record, trends, and profile links.. It takes category (str), limit (int). Return the result as structured JSON.