get_team_fixtures
fotmob.comReturns team fixture history and upcoming schedule from https://fotmob.com with match IDs, opponents, home/away context, UTC kickoff times, league names, and match status. Supports latest-season fixtures or paginated historical season retrieval.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_team_fixtures?
Returns team fixture history and upcoming schedule from https://fotmob.com with match IDs, opponents, home/away context, UTC kickoff times, league names, and match status. Supports latest-season fixtures or paginated historical season retrieval. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass team_id, season, max_pages, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"mode": "<string>",
"team_id": 0,
"fixtures": [
{}
],
"team_name": "<string>",
"latest_season": "<string>",
"pages_fetched": 0,
"requested_season": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/51cee978-e701-4ed8-a02d-a48ef0cc8d5f/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "51cee978-e701-4ed8-a02d-a48ef0cc8d5f",
"variables": {
"team_id": 9825,
"season": "",
"max_pages": 10,
"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="51cee978-e701-4ed8-a02d-a48ef0cc8d5f") — the "get_team_fixtures" function, which returns team fixture history and upcoming schedule from https://fotmob.com with match IDs, opponents, home/away context, UTC kickoff times, league names, and match status. Supports latest-season fixtures or paginated historical season retrieval.. It takes team_id (int), season (str), max_pages (int), timeout_seconds (int). Return the result as structured JSON.