Live
get_match_report
flashscore.comReturns a comprehensive single-match report from https://flashscore.com with detail, events, period statistics, lineups, form, head-to-head, standings, and 1X2 odds.
Parameters2
Runs8
Updated3d ago
Operational8 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_match_report?
Returns a comprehensive single-match report from https://flashscore.com with detail, events, period statistics, lineups, form, head-to-head, standings, and 1X2 odds. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass match_id, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"events": [
{}
],
"source": "<string>",
"lineups": {},
"match_id": "<string>",
"odds_1x2": {},
"match_info": {},
"statistics": [
{}
],
"head_to_head": [
{}
],
"match_detail": {},
"event_periods": [
{}
],
"input_not_found": true,
"league_standings": {},
"away_form_overall": [
{}
],
"home_form_overall": [
{}
],
"away_form_away_only": [
{}
],
"home_form_home_only": [
{}
],
"statistics_by_period": {}
}Call it
curl --location 'https://us-prod.notte.cc/functions/8821da40-22af-42f6-8273-28c0eb4557dc/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "8821da40-22af-42f6-8273-28c0eb4557dc",
"variables": {
"match_id": "I7HdaqED",
"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="8821da40-22af-42f6-8273-28c0eb4557dc") — the "get_match_report" function, which returns a comprehensive single-match report from https://flashscore.com with detail, events, period statistics, lineups, form, head-to-head, standings, and 1X2 odds.. It takes match_id (str), timeout_seconds (int). Return the result as structured JSON.