Marketplace
No threads yet
Live

list_historical_match_results

fotmob.com

Returns detailed historical league match results from https://fotmob.com with scores, shootouts, events, team statistics, venues and referees.

Parameters6
Runs7
Updated3d ago
Operational7 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 list_historical_match_results?

Returns detailed historical league match results from https://fotmob.com with scores, shootouts, events, team statistics, venues and referees. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass league_id, season, team_id, country_code3, timeout_seconds, max_workers and get the result back without maintaining a scraper.

Response

{
  "league": {},
  "season": "<string>",
  "source": "<string>",
  "matches": [
    {}
  ],
  "team_filter": {},
  "failed_matches": [
    {}
  ],
  "fixtures_found": 0,
  "matches_returned": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/2925fb66-77bb-4ac3-bd23-57a4d957b605/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "2925fb66-77bb-4ac3-bd23-57a4d957b605",
    "variables": {
        "league_id": 47,
        "season": "2024/2025",
        "team_id": 9825,
        "country_code3": "USA_CA",
        "timeout_seconds": 20,
        "max_workers": 12
    }
}'

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="2925fb66-77bb-4ac3-bd23-57a4d957b605") — the "list_historical_match_results" function, which returns detailed historical league match results from https://fotmob.com with scores, shootouts, events, team statistics, venues and referees..

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