get_club_overview
transfermarkt.com.brGets a club's season overview from https://transfermarkt.com.br. Returns league standing, squad profile, stadium, market value, transfer balance, official club facts, and honours exposed on the summary page.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_club_overview?
Gets a club's season overview from https://transfermarkt.com.br. Returns league standing, squad profile, stadium, market value, transfer balance, official club facts, and honours exposed on the summary page. 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
{
"fax": "<string>",
"league": {
"url": "<string>",
"name": "<string>",
"country": "<string>",
"division": "<string>",
"position": 0,
"competition_id": "<string>",
"years_in_league": 0
},
"address": "<string>",
"club_id": 0,
"logo_url": "<string>",
"page_url": "<string>",
"club_name": "<string>",
"season_id": 0,
"telephone": "<string>",
"transfers": {
"income": "<string>",
"income_eur": 0,
"expenditure": "<string>",
"total_balance": "<string>",
"current_balance": "<string>",
"expenditure_eur": 0,
"total_balance_eur": 0,
"current_balance_eur": 0,
"income_transfer_count": 0,
"expenditure_transfer_count": 0
},
"squad_size": 0,
"average_age": 0,
"stadium_url": "<string>",
"achievements": [
{
"name": "<string>",
"count": 0
}
],
"founded_date": "<string>",
"member_count": 0,
"season_label": "<string>",
"stadium_name": "<string>",
"official_name": "<string>",
"foreigners_count": 0,
"official_website": "<string>",
"stadium_capacity": 0,
"total_market_value": "<string>",
"foreigners_percentage": 0,
"national_team_players": 0,
"total_market_value_eur": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/2dabdafd-0ec5-47a2-ac09-ba638aefd06c/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "2dabdafd-0ec5-47a2-ac09-ba638aefd06c",
"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.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="2dabdafd-0ec5-47a2-ac09-ba638aefd06c") — the "get_club_overview" function, which gets a club's season overview from https://transfermarkt.com.br. Returns league standing, squad profile, stadium, market value, transfer balance, official club facts, and honours exposed on the summary page.. It takes club_id (int), season_id (int). Return the result as structured JSON.