Marketplace
No threads yet
Live

get_club_squad

transfermarkt.com.br

Gets a club's detailed season squad from https://transfermarkt.com.br. Returns every player with identity, shirt number, position, nationality, bio, contract, previous-club, market-value, and profile details exposed by the squad table.

Parameters2
Runs18
Updated10d ago
Degraded18 runs · 77.7% 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_club_squad?

Gets a club's detailed season squad from https://transfermarkt.com.br. Returns every player with identity, shirt number, position, nationality, bio, contract, previous-club, market-value, and profile details exposed by the squad table. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass club_id, season_id and get the result back without maintaining a scraper.

Response

{
  "club_id": 0,
  "players": [
    {
      "age": 0,
      "name": "<string>",
      "height": "<string>",
      "position": "<string>",
      "player_id": 0,
      "joined_date": "<string>",
      "profile_url": "<string>",
      "market_value": "<string>",
      "portrait_url": "<string>",
      "shirt_number": "<string>",
      "date_of_birth": "<string>",
      "nationalities": [
        "<string>"
      ],
      "position_group": "<string>",
      "preferred_foot": "<string>",
      "contract_expiry": "<string>",
      "market_value_eur": 0,
      "previous_club_id": 0,
      "previous_club_url": "<string>",
      "previous_club_name": "<string>",
      "previous_transfer_details": "<string>"
    }
  ],
  "page_url": "<string>",
  "club_name": "<string>",
  "season_id": 0,
  "player_count": 0,
  "season_label": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/2c7640f4-4c33-4e55-b974-43d5b73b66f7/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "2c7640f4-4c33-4e55-b974-43d5b73b66f7",
    "variables": {
        "club_id": 614,
        "season_id": 2025
    }
}'

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="2c7640f4-4c33-4e55-b974-43d5b73b66f7") — the "get_club_squad" function, which gets a club's detailed season squad from https://transfermarkt.com.br. Returns every player with identity, shirt number, position, nationality, bio, contract, previous-club, market-value, and profile details exposed by the squad table..

It takes club_id (int), season_id (int). Return the result as structured JSON.