get_agency_details
transfermarkt.com.brReturns agency details and all represented players from https://transfermarkt.com.br, including positions, ages, nationalities, clubs, leagues, contracts, market values, and agency staff.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_agency_details?
Returns agency details and all represented players from https://transfermarkt.com.br, including positions, ages, nationalities, clubs, leagues, contracts, market values, and agency staff. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass agency_id, agency_slug and get the result back without maintaining a scraper.
Response
{
"name": "<string>",
"country": "<string>",
"premium": true,
"licensed": true,
"location": "<string>",
"logo_url": "<string>",
"verified": true,
"agency_id": 0,
"employees": [
{
"name": "<string>",
"role": "<string>",
"licensed": true,
"nationalities": [
"<string>"
],
"profile_image_url": "<string>"
}
],
"agency_url": "<string>",
"rumors_url": "<string>",
"agency_slug": "<string>",
"rumor_count": 0,
"player_count": 0,
"social_links": [
"<string>"
],
"detail_fields": [
{
"url": "<string>",
"label": "<string>",
"value": "<string>",
"section": "<string>"
}
],
"verified_since": "<string>",
"total_market_value": "<string>",
"represented_players": [
{
"age": 0,
"name": "<string>",
"position": "<string>",
"player_id": 0,
"league_name": "<string>",
"player_slug": "<string>",
"profile_url": "<string>",
"market_value": "<string>",
"nationalities": [
"<string>"
],
"league_country": "<string>",
"contract_expiry": "<string>",
"contract_option": "<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>",
"current_club_logo_url": "<string>"
}
],
"total_market_value_eur": 0,
"first_tier_player_count": 0,
"represented_players_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/d87e6292-44eb-415d-b5b0-5e477c23bc1a/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "d87e6292-44eb-415d-b5b0-5e477c23bc1a",
"variables": {
"agency_id": 724,
"agency_slug": "bertolucci-sports"
}
}'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="d87e6292-44eb-415d-b5b0-5e477c23bc1a") — the "get_agency_details" function, which returns agency details and all represented players from https://transfermarkt.com.br, including positions, ages, nationalities, clubs, leagues, contracts, market values, and agency staff.. It takes agency_id (int), agency_slug (str). Return the result as structured JSON.