Marketplace
No threads yet
Live

get_player_match_log

fotmob.com

Returns up to 60 recent game-by-game player appearances from https://fotmob.com with dates, competitions, opponents, starting status, minutes, ratings, goals, assists and cards.

Parameters6
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_player_match_log?

Returns up to 60 recent game-by-game player appearances from https://fotmob.com with dates, competitions, opponents, starting status, minutes, ratings, goals, assists and cards. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass player_id, season_start, season_end, league_id, limit, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "matches": [
    {
      "goals": 0,
      "stage": "<string>",
      "rating": 0,
      "assists": 0,
      "is_home": true,
      "outcome": "<string>",
      "started": true,
      "team_id": 0,
      "date_utc": "<string>",
      "match_id": 0,
      "on_bench": true,
      "home_away": "<string>",
      "red_cards": 0,
      "team_name": "<string>",
      "away_score": 0,
      "home_score": 0,
      "player_score": 0,
      "yellow_cards": 0,
      "is_top_rating": true,
      "competition_id": 0,
      "match_page_url": "<string>",
      "minutes_played": 0,
      "opponent_score": 0,
      "played_in_match": true,
      "starting_status": "<string>",
      "competition_name": "<string>",
      "opponent_team_id": 0,
      "lineup_position_id": 0,
      "opponent_team_name": "<string>",
      "player_of_the_match": true
    }
  ],
  "player_id": 0,
  "match_count": 0,
  "player_name": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/3e8b8496-db67-410d-9844-aa0633f2d5c3/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "3e8b8496-db67-410d-9844-aa0633f2d5c3",
    "variables": {
        "player_id": 961995,
        "season_start": "",
        "season_end": "",
        "league_id": 0,
        "limit": 60,
        "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="3e8b8496-db67-410d-9844-aa0633f2d5c3") — the "get_player_match_log" function, which returns up to 60 recent game-by-game player appearances from https://fotmob.com with dates, competitions, opponents, starting status, minutes, ratings, goals, assists and cards..

It takes player_id (int), season_start (str), season_end (str), league_id (int), limit (int), timeout_seconds (int). Return the result as structured JSON.