Marketplace
No threads yet
Live

get_live_score_updates

flashscore.com

Returns incremental live-score and recent-result delta updates from https://flashscore.com across one sport or all sports. Each update includes match IDs, status/score fields when present, and per-sport delta metadata.

Parameters2
Runs9
Updated8d ago
Operational9 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_live_score_updates?

Returns incremental live-score and recent-result delta updates from https://flashscore.com across one sport or all sports. Each update includes match IDs, status/score fields when present, and per-sport delta metadata. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass sport, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "sport": "<string>",
  "source": "<string>",
  "matches": [
    {}
  ],
  "checksum": "<string>",
  "sport_id": 0,
  "total_count": 0,
  "requested_at": "<string>",
  "sport_metadata": {}
}

Call it

curl --location 'https://us-prod.notte.cc/functions/cfe41a4a-c08f-473f-a84d-43818b4236c8/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "cfe41a4a-c08f-473f-a84d-43818b4236c8",
    "variables": {
        "sport": "all",
        "timeout_seconds": 25
    }
}'

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="cfe41a4a-c08f-473f-a84d-43818b4236c8") — the "get_live_score_updates" function, which returns incremental live-score and recent-result delta updates from https://flashscore.com across one sport or all sports. Each update includes match IDs, status/score fields when present, and per-sport delta metadata..

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