get_global_player_leaderboard
playerelo.footballGets the global player leaderboard from https://playerelo.football ordered by Elo rating descending. Returns paginated player records with all non-empty source fields plus name, team, position, rating, and 28-day Elo change.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_global_player_leaderboard?
Gets the global player leaderboard from https://playerelo.football ordered by Elo rating descending. Returns paginated player records with all non-empty source fields plus name, team, position, rating, and 28-day Elo change. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass limit, offset, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"players": [
{}
],
"has_more": true,
"returned_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/03f62b4b-c447-4d3a-baea-862a47def529/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "03f62b4b-c447-4d3a-baea-862a47def529",
"variables": {
"limit": 25,
"offset": 0,
"timeout_seconds": 20
}
}'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="03f62b4b-c447-4d3a-baea-862a47def529") — the "get_global_player_leaderboard" function, which gets the global player leaderboard from https://playerelo.football ordered by Elo rating descending. Returns paginated player records with all non-empty source fields plus name, team, position, rating, and 28-day Elo change.. It takes limit (int), offset (int), timeout_seconds (int). Return the result as structured JSON.