Marketplace
No threads yet
Live

get_player_transfer_history

transfermarkt.com.br

Returns a player's complete chronological transfer history from https://transfermarkt.com.br with dates, clubs, fees, market values, loan flags, and club media.

Parameters1
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 get_player_transfer_history?

Returns a player's complete chronological transfer history from https://transfermarkt.com.br with dates, clubs, fees, market values, loan flags, and club media. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass player_id and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "player_id": 0,
  "transfers": [
    {
      "fee": "<string>",
      "date": "<string>",
      "loan": true,
      "season": "<string>",
      "to_club": {},
      "date_iso": "<string>",
      "upcoming": true,
      "from_club": {},
      "market_value": "<string>",
      "transfer_url": "<string>",
      "future_transfer": 0
    }
  ],
  "history_url": "<string>",
  "total_transfer_fees_eur": 0,
  "formatted_total_transfer_fees": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/26ce6b4f-8835-4309-982c-226886b3a2a3/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "26ce6b4f-8835-4309-982c-226886b3a2a3",
    "variables": {
        "player_id": 432895
    }
}'

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="26ce6b4f-8835-4309-982c-226886b3a2a3") — the "get_player_transfer_history" function, which returns a player's complete chronological transfer history from https://transfermarkt.com.br with dates, clubs, fees, market values, loan flags, and club media..

It takes player_id (int). Return the result as structured JSON.