Marketplace
No threads yet
Live

get_match_statistics

sofascore.com

Returns comprehensive match overview, shooting, attack and all available period statistics for a finished event from https://www.sofascore.com.

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_statistics?

Returns comprehensive match overview, shooting, attack and all available period statistics for a finished event from https://www.sofascore.com. 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": {},
  "periods": [
    {
      "groups": [
        {}
      ],
      "period": "<string>",
      "key_statistics": {
        "fouls": {},
        "passes": {},
        "sprints": {},
        "tackles": {},
        "offsides": {},
        "red_cards": {},
        "free_kicks": {},
        "big_chances": {},
        "total_shots": {},
        "corner_kicks": {},
        "hit_woodwork": {},
        "yellow_cards": {},
        "blocked_shots": {},
        "through_balls": {},
        "expected_goals": {},
        "ball_possession": {},
        "shots_on_target": {},
        "distance_covered": {},
        "goalkeeper_saves": {},
        "shots_inside_box": {},
        "shots_off_target": {},
        "shots_outside_box": {},
        "big_chances_missed": {},
        "big_chances_scored": {},
        "fouled_in_final_third": {},
        "expected_goals_on_target": {},
        "touches_in_opposition_box": {}
      }
    }
  ],
  "event_id": 0,
  "period_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/09620bd4-2331-40a3-b0f5-58e4e356dbdf/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "09620bd4-2331-40a3-b0f5-58e4e356dbdf",
    "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="09620bd4-2331-40a3-b0f5-58e4e356dbdf") — the "get_match_statistics" function, which returns comprehensive match overview, shooting, attack and all available period statistics for a finished event from https://www.sofascore.com..

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