get_team_players_by_elo
playerelo.footballGets the top-rated players for a specific team from https://playerelo.football, ordered by Elo rating descending. Returns team rank, global rank, position, rating, and all available player record details.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_team_players_by_elo?
Gets the top-rated players for a specific team from https://playerelo.football, ordered by Elo rating descending. Returns team rank, global rank, position, rating, and all available player record details. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass team, limit and get the result back without maintaining a scraper.
Response
{
"team": "<string>",
"total": 0,
"players": [
{}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/714cdc64-344a-459c-858d-945fe002ab20/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "714cdc64-344a-459c-858d-945fe002ab20",
"variables": {
"team": "Manchester City",
"limit": 25
}
}'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="714cdc64-344a-459c-858d-945fe002ab20") — the "get_team_players_by_elo" function, which gets the top-rated players for a specific team from https://playerelo.football, ordered by Elo rating descending. Returns team rank, global rank, position, rating, and all available player record details.. It takes team (str), limit (int). Return the result as structured JSON.