Marketplace
No threads yet
Live

list_competition_clubs

transfermarkt.com.br

Returns every club in a competition season from https://transfermarkt.com.br with reusable IDs, squad sizes, average ages, foreigner counts, and market values.

Parameters2
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_clubs?

Returns every club in a competition season from https://transfermarkt.com.br with reusable IDs, squad sizes, average ages, foreigner counts, and market values. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass competition_code, season_id and get the result back without maintaining a scraper.

Response

{
  "clubs": [
    {
      "name": "<string>",
      "slug": "<string>",
      "club_id": 0,
      "club_url": "<string>",
      "logo_url": "<string>",
      "squad_url": "<string>",
      "squad_size": 0,
      "average_age": 0,
      "foreigner_count": 0,
      "total_market_value": "<string>",
      "average_market_value": "<string>",
      "total_market_value_eur": 0,
      "average_market_value_eur": 0
    }
  ],
  "season_id": 0,
  "club_count": 0,
  "source_url": "<string>",
  "season_label": "<string>",
  "competition_code": "<string>",
  "competition_name": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/5b928a97-cb0d-4397-9939-d9d706009f76/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "5b928a97-cb0d-4397-9939-d9d706009f76",
    "variables": {
        "competition_code": "GB1",
        "season_id": null
    }
}'

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="5b928a97-cb0d-4397-9939-d9d706009f76") — the "list_competition_clubs" function, which returns every club in a competition season from https://transfermarkt.com.br with reusable IDs, squad sizes, average ages, foreigner counts, and market values..

It takes competition_code (str), season_id (int | None). Return the result as structured JSON.