Marketplace
No threads yet
Live

list_scheduled_events

sofascore.com

Returns scheduled sporting events by date and sport from https://www.sofascore.com with teams, tournaments, scores, status and reusable event IDs.

Parameters2
Runs23
Updated5h ago

Playground

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

What is list_scheduled_events?

Returns scheduled sporting events by date and sport from https://www.sofascore.com with teams, tournaments, scores, status and reusable event IDs. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass date, sports and get the result back without maintaining a scraper.

Response

{
  "date": "<string>",
  "count": 0,
  "events": [
    {}
  ],
  "sports": [
    "<string>"
  ],
  "pages_fetched": 0,
  "tournaments_checked": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/903e2b3d-2a01-4ad2-9693-943ac4744681/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "903e2b3d-2a01-4ad2-9693-943ac4744681",
    "variables": {
        "date": "",
        "sports": ["football"]
    }
}'

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="903e2b3d-2a01-4ad2-9693-943ac4744681") — the "list_scheduled_events" function, which returns scheduled sporting events by date and sport from https://www.sofascore.com with teams, tournaments, scores, status and reusable event IDs..

It takes date (str), sports (list[str]). Return the result as structured JSON.