Marketplace
No threads yet
Live

get_match_incidents

sofascore.com

Returns the full chronological incident timeline for a started or finished football match from https://www.sofascore.com, including goals, cards, substitutions and VAR decisions.

Parameters1
Runs4
Updated5h ago
Operational4 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_match_incidents?

Returns the full chronological incident timeline for a started or finished football match from https://www.sofascore.com, including goals, cards, substitutions and VAR decisions. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass event_id and get the result back without maintaining a scraper.

Response

{
  "match": {},
  "event_id": 0,
  "incidents": [
    {}
  ],
  "incident_count": 0,
  "incident_counts": {}
}

Call it

curl --location 'https://us-prod.notte.cc/functions/b50b66c5-2a9a-41f9-87f2-0e50abc340fb/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "b50b66c5-2a9a-41f9-87f2-0e50abc340fb",
    "variables": {
        "event_id": 15502653
    }
}'

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="b50b66c5-2a9a-41f9-87f2-0e50abc340fb") — the "get_match_incidents" function, which returns the full chronological incident timeline for a started or finished football match from https://www.sofascore.com, including goals, cards, substitutions and VAR decisions..

It takes event_id (int). Return the result as structured JSON.