Marketplace
No threads yet
Live

get_match_advanced_analytics

fotmob.com

Returns period xG breakdowns, featured-player progressive passing and defensive stats, and complete shot maps for a match from https://fotmob.com.

Parameters2
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_advanced_analytics?

Returns period xG breakdowns, featured-player progressive passing and defensive stats, and complete shot maps for a match from https://fotmob.com. 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

{
  "match": {},
  "source": "<string>",
  "players": [
    {
      "id": 0,
      "name": "<string>",
      "side": "<string>",
      "profile": {},
      "started": true,
      "team_id": 0,
      "team_name": "<string>",
      "minutes_played": 0,
      "defensive_contributions": [
        {}
      ],
      "progressive_and_final_third_passing": [
        {}
      ]
    }
  ],
  "shotmap": [
    {}
  ],
  "match_id": 0,
  "xg_periods": [
    {}
  ],
  "xg_available": true,
  "upstream_calls": 0,
  "shotmap_available": true,
  "player_analytics_available": true
}

Call it

curl --location 'https://us-prod.notte.cc/functions/0e2dc143-8ba6-4ec8-9499-d269e539d935/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "0e2dc143-8ba6-4ec8-9499-d269e539d935",
    "variables": {
        "match_id": 5793186,
        "timeout_seconds": 20
    }
}'

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="0e2dc143-8ba6-4ec8-9499-d269e539d935") — the "get_match_advanced_analytics" function, which returns period xG breakdowns, featured-player progressive passing and defensive stats, and complete shot maps for a match from https://fotmob.com..

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