Marketplace
No threads yet
Live

get_player_match_logs

fbref.com

Returns season-specific player match logs from https://fbref.com with complete non-empty records for summary, passing, passing types, GCA, defense or possession.

Parameters4
Runs20
Updated3d ago
Degraded20 runs · 60% 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_logs?

Returns season-specific player match logs from https://fbref.com with complete non-empty records for summary, passing, passing types, GCA, defense or possession. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass player_id, player_slug, season, stat_type and get the result back without maintaining a scraper.

Response

{
  "season": "<string>",
  "matches": [
    {}
  ],
  "player_id": "<string>",
  "stat_type": "<string>",
  "player_name": "<string>",
  "match_logs_url": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/0b0331d7-4c37-405c-8d9a-88c2aebe22b5/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "0b0331d7-4c37-405c-8d9a-88c2aebe22b5",
    "variables": {
        "player_id": "d70ce98e",
        "player_slug": "Lionel-Messi-Match-Logs",
        "season": "2026",
        "stat_type": "summary"
    }
}'

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="0b0331d7-4c37-405c-8d9a-88c2aebe22b5") — the "get_player_match_logs" function, which returns season-specific player match logs from https://fbref.com with complete non-empty records for summary, passing, passing types, GCA, defense or possession..

It takes player_id (str), player_slug (str), season (str), stat_type (str). Return the result as structured JSON.