Marketplace
No threads yet
Live

get_player_market_value_history

transfermarkt.com.br

Returns a player's full chronological market value history from https://transfermarkt.com.br with dates, formatted and numeric values, clubs, ages, and summary fields.

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_market_value_history?

Returns a player's full chronological market value history from https://transfermarkt.com.br with dates, formatted and numeric values, clubs, ages, and summary fields. 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,
  "updates": [
    {}
  ],
  "player_id": 0,
  "details_url": "<string>",
  "last_change_date": "<string>",
  "current_market_value": "<string>",
  "highest_market_value": "<string>",
  "highest_market_value_date": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/de77e237-da8b-40d0-96b8-104f2e726772/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "de77e237-da8b-40d0-96b8-104f2e726772",
    "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="de77e237-da8b-40d0-96b8-104f2e726772") — the "get_player_market_value_history" function, which returns a player's full chronological market value history from https://transfermarkt.com.br with dates, formatted and numeric values, clubs, ages, and summary fields..

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