Marketplace
No threads yet
Live

get_match_statistics

flashscore.com

Returns comprehensive period and category match statistics with home and away values from https://flashscore.com, after verifying statistics are available.

Parameters1
Runs6
Updated3d ago
Operational6 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_statistics?

Returns comprehensive period and category match statistics with home and away values from https://flashscore.com, after verifying statistics are available. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass match_id and get the result back without maintaining a scraper.

Response

{
  "source": "<string>",
  "match_id": "<string>",
  "statistics": [
    {
      "name": "<string>",
      "period": "<string>",
      "stat_id": 0,
      "category": "<string>",
      "away_value": "<any>",
      "home_value": "<any>",
      "period_label": "<string>",
      "source_fields": {},
      "category_label": "<string>"
    }
  ],
  "available_data": [
    "<string>"
  ],
  "input_not_found": true
}

Call it

curl --location 'https://us-prod.notte.cc/functions/7be9ef7a-0c0e-4f31-96e6-f1c95a88a4a8/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "7be9ef7a-0c0e-4f31-96e6-f1c95a88a4a8",
    "variables": {
        "match_id": "jNXdfeGb"
    }
}'

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="7be9ef7a-0c0e-4f31-96e6-f1c95a88a4a8") — the "get_match_statistics" function, which returns comprehensive period and category match statistics with home and away values from https://flashscore.com, after verifying statistics are available..

It takes match_id (str). Return the result as structured JSON.