Marketplace
No threads yet
Live

get_match_lineup_stats

fotmob.com

Returns match lineups, entered substitutes, unused bench players, detailed player statistics, heatmaps, and key events from https://fotmob.com.

Parameters2
Runs7
Updated3d ago
Operational7 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_lineup_stats?

Returns match lineups, entered substitutes, unused bench players, detailed player statistics, heatmaps, and key events 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

{
  "bench": [
    {}
  ],
  "match": {},
  "teams": [
    {
      "id": 0,
      "name": "<string>",
      "side": "<string>",
      "coach": {},
      "rating": 0,
      "starters": [
        {}
      ],
      "formation": "<string>",
      "substitutes": [
        {}
      ],
      "average_starter_age": 0,
      "total_starter_market_value": 0
    }
  ],
  "events": [
    {}
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/42bdb16b-d836-4e71-9094-f5c32c03db5b/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "42bdb16b-d836-4e71-9094-f5c32c03db5b",
    "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="42bdb16b-d836-4e71-9094-f5c32c03db5b") — the "get_match_lineup_stats" function, which returns match lineups, entered substitutes, unused bench players, detailed player statistics, heatmaps, and key events from https://fotmob.com..

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