Marketplace
No threads yet
Live

list_competition_player_leaderboard

fbref.com

Returns every player in an FBref competition season from https://fbref.com with identity, team, position, age, minutes and selectable standard or advanced metrics.

Parameters3
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 list_competition_player_leaderboard?

Returns every player in an FBref competition season from https://fbref.com with identity, team, position, age, minutes and selectable standard or advanced metrics. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass competition_id, season, stat_type and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "season": "<string>",
  "players": [
    {
      "age": "<string>",
      "name": "<string>",
      "team": "<string>",
      "metrics": {},
      "minutes": "<string>",
      "position": "<string>",
      "player_id": "<string>"
    }
  ],
  "stat_type": "<string>",
  "metric_names": [
    "<string>"
  ],
  "competition_id": 0,
  "competition_name": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/e02443ee-933f-43f2-ae53-341e484c9052/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "e02443ee-933f-43f2-ae53-341e484c9052",
    "variables": {
        "competition_id": 9,
        "season": "2025-2026",
        "stat_type": "stats"
    }
}'

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="e02443ee-933f-43f2-ae53-341e484c9052") — the "list_competition_player_leaderboard" function, which returns every player in an FBref competition season from https://fbref.com with identity, team, position, age, minutes and selectable standard or advanced metrics..

It takes competition_id (int), season (str), stat_type (str). Return the result as structured JSON.