Marketplace
No threads yet
Live

list_team_fixtures

fbref.com

Returns every team fixture and result across all competitions for a season from https://fbref.com, including scores, formations, opponents and match IDs.

Parameters2
Runs6
Updated3d ago
Failing6 runs · 66.6% 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 list_team_fixtures?

Returns every team fixture and result across all competitions for a season from https://fbref.com, including scores, formations, opponents and match IDs. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass team_id, season and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "season": "<string>",
  "matches": [
    {}
  ],
  "team_id": "<string>",
  "team_name": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/51a15bec-4068-4422-8222-2a4c0416df60/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "51a15bec-4068-4422-8222-2a4c0416df60",
    "variables": {
        "team_id": "18bb7c10",
        "season": "2025-2026"
    }
}'

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="51a15bec-4068-4422-8222-2a4c0416df60") — the "list_team_fixtures" function, which returns every team fixture and result across all competitions for a season from https://fbref.com, including scores, formations, opponents and match IDs..

It takes team_id (str), season (str). Return the result as structured JSON.