Marketplace
No threads yet
Live

get_league_season_statistics

fotmob.com

Gets season-wide league player and team statistics from https://fotmob.com, including top scorers, assists, expected goals, clean sheets, and all other available stat categories alongside the full standings table. Returns complete non-empty fields for each statistical and standings record.

Parameters3
Runs9
Updated8d ago
Operational9 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_league_season_statistics?

Gets season-wide league player and team statistics from https://fotmob.com, including top scorers, assists, expected goals, clean sheets, and all other available stat categories alongside the full standings table. Returns complete non-empty fields for each statistical and standings record. 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 and get the result back without maintaining a scraper.

Response

{
  "league": {},
  "source": "<string>",
  "standings": [
    {}
  ],
  "selected_season": "<string>",
  "team_statistics": [
    {}
  ],
  "available_seasons": [
    "<string>"
  ],
  "player_statistics": [
    {}
  ],
  "season_stat_links": [
    {}
  ],
  "seasons_with_stat_links": [
    "<string>"
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/0622009d-b978-4360-91b9-1d1dca7d9f8f/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "0622009d-b978-4360-91b9-1d1dca7d9f8f",
    "variables": {
        "league_id": 47,
        "season": "2025/2026",
        "country_code3": "USA_CA"
    }
}'

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="0622009d-b978-4360-91b9-1d1dca7d9f8f") — the "get_league_season_statistics" function, which gets season-wide league player and team statistics from https://fotmob.com, including top scorers, assists, expected goals, clean sheets, and all other available stat categories alongside the full standings table. Returns complete non-empty fields for each statistical and standings record..

It takes league_id (int), season (str), country_code3 (str). Return the result as structured JSON.