get_football_matches_by_date
fotmob.comGets all football matches for a selected date from https://fotmob.com, grouped by league with teams, scores, live or final status, and timing details. Supports local timezone and country context.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_football_matches_by_date?
Gets all football matches for a selected date from https://fotmob.com, grouped by league with teams, scores, live or final status, and timing details. Supports local timezone and country context. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass date, timezone_name, country_code, include_next_day_late_night and get the result back without maintaining a scraper.
Response
{
"date": "<string>",
"leagues": [
{}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/f13bb954-cde7-4702-9fb7-bfb6d371030a/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "f13bb954-cde7-4702-9fb7-bfb6d371030a",
"variables": {
"date": "today",
"timezone_name": "UTC",
"country_code": "USA",
"include_next_day_late_night": false
}
}'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="f13bb954-cde7-4702-9fb7-bfb6d371030a") — the "get_football_matches_by_date" function, which gets all football matches for a selected date from https://fotmob.com, grouped by league with teams, scores, live or final status, and timing details. Supports local timezone and country context.. It takes date (str), timezone_name (str), country_code (str), include_next_day_late_night (bool). Return the result as structured JSON.