Marketplace
No threads yet
Live

get_compact_match_schedule

fotmob.com

Returns a sub-12 KB columnar match schedule from https://fotmob.com with short keys for match and team IDs, team names, scores, status IDs, and live minutes.

Parameters2
Runs6
Updated3d ago
Operational6 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_compact_match_schedule?

Returns a sub-12 KB columnar match schedule from https://fotmob.com with short keys for match and team IDs, team names, scores, status IDs, and live minutes. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass date, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "a": [
    "<string>"
  ],
  "h": [
    "<string>"
  ],
  "i": [
    0
  ],
  "m": [
    0
  ],
  "s": [
    0
  ],
  "x": [
    0
  ],
  "y": [
    0
  ],
  "ai": [
    0
  ],
  "hi": [
    0
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/0ea31d03-b62d-4f4a-b70b-4db677ca48aa/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "0ea31d03-b62d-4f4a-b70b-4db677ca48aa",
    "variables": {
        "date": "today",
        "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.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="0ea31d03-b62d-4f4a-b70b-4db677ca48aa") — the "get_compact_match_schedule" function, which returns a sub-12 KB columnar match schedule from https://fotmob.com with short keys for match and team IDs, team names, scores, status IDs, and live minutes..

It takes date (str), timeout_seconds (int). Return the result as structured JSON.