get_player_profile
transfermarkt.com.brGets a player's Transfermarkt profile from https://transfermarkt.com.br, including personal details, position/footedness, market value, contract data, current club, agent, and join keys for club and agency records.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_player_profile?
Gets a player's Transfermarkt profile from https://transfermarkt.com.br, including personal details, position/footedness, market value, contract data, current club, agent, and join keys for club and agency records. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass player_id, player_slug, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"age": 0,
"name": "<string>",
"height": "<string>",
"position": "<string>",
"supplier": "<string>",
"agency_id": 0,
"full_name": "<string>",
"player_id": 0,
"agency_url": "<string>",
"agent_name": "<string>",
"agency_slug": "<string>",
"joined_date": "<string>",
"player_slug": "<string>",
"profile_url": "<string>",
"market_value": "<string>",
"shirt_number": 0,
"social_links": [
"<string>"
],
"date_of_birth": "<string>",
"detail_fields": [
{
"label": "<string>",
"links": [
{
"id": 0,
"url": "<string>",
"slug": "<string>",
"text": "<string>",
"title": "<string>"
}
],
"value": "<string>"
}
],
"nationalities": [
"<string>"
],
"place_of_birth": "<string>",
"position_group": "<string>",
"preferred_foot": "<string>",
"contract_expiry": "<string>",
"current_club_id": 0,
"current_club_url": "<string>",
"market_value_eur": 0,
"current_club_name": "<string>",
"current_club_slug": "<string>",
"profile_image_url": "<string>",
"national_team_caps": 0,
"national_team_goals": 0,
"former_national_team": "<string>",
"contract_last_extension": "<string>",
"market_value_last_update": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/61a5e2dc-40d8-4356-b3a4-96b6acaedc9d/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "61a5e2dc-40d8-4356-b3a4-96b6acaedc9d",
"variables": {
"player_id": 432895,
"player_slug": "pedro",
"timeout_seconds": 45
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="61a5e2dc-40d8-4356-b3a4-96b6acaedc9d") — the "get_player_profile" function, which gets a player's Transfermarkt profile from https://transfermarkt.com.br, including personal details, position/footedness, market value, contract data, current club, agent, and join keys for club and agency records.. It takes player_id (int), player_slug (str), timeout_seconds (int). Return the result as structured JSON.