list_league_players
fotmob.comReturns every team roster in a FotMob league season from https://fotmob.com with player performance metrics, biographies and current coaching staff.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_league_players?
Returns every team roster in a FotMob league season from https://fotmob.com with player performance metrics, biographies and current coaching staff. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass league_id, season, country_code3, max_player_enrichments, timeout_seconds, max_workers and get the result back without maintaining a scraper.
Response
{
"mode": "<string>",
"teams": [
{}
],
"league": {},
"season": "<string>",
"source": "<string>",
"player_count": 0,
"teams_returned": 0,
"failed_requests": [
{}
],
"teams_requested": 0,
"coaching_staff_count": 0,
"players_missing_biography": [
0
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/1c8c0310-2281-4449-b91e-10610b6495ad/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "1c8c0310-2281-4449-b91e-10610b6495ad",
"variables": {
"league_id": 47,
"season": "latest",
"country_code3": "USA_CA",
"max_player_enrichments": 30,
"timeout_seconds": 20,
"max_workers": 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="1c8c0310-2281-4449-b91e-10610b6495ad") — the "list_league_players" function, which returns every team roster in a FotMob league season from https://fotmob.com with player performance metrics, biographies and current coaching staff.. It takes league_id (int), season (str), country_code3 (str), max_player_enrichments (int), timeout_seconds (int), max_workers (int). Return the result as structured JSON.