get_live_score_updates
flashscore.comReturns 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.
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.
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.