Live
get_team_profile
besoccer.comGets detailed profile information for a BeSoccer team from https://www.besoccer.com, including team identity, league/competition data, coach profile stats, and stadium details.
Parameters2
Runs15
Updated9d ago
Degraded15 runs · 86.6% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_team_profile?
Gets detailed profile information for a BeSoccer team from https://www.besoccer.com, including team identity, league/competition data, coach profile stats, and stadium details. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass team_id, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"coach": {
"age": "<string>",
"name": "<string>",
"wins": 0,
"draws": 0,
"losses": 0,
"matches": 0,
"birth_date": "<string>",
"profile_url": "<string>",
"wins_percentage": "<string>",
"country_flag_url": "<string>",
"draws_percentage": "<string>",
"losses_percentage": "<string>"
},
"stadium": {
"city": "<string>",
"name": "<string>",
"address": "<string>",
"details": {},
"image_url": "<string>"
},
"team_id": "<string>",
"team_name": "<string>",
"league_url": "<string>",
"page_title": "<string>",
"source_url": "<string>",
"league_name": "<string>",
"competitions": [
{
"url": "<string>",
"name": "<string>"
}
],
"team_short_code": "<string>",
"team_display_name": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/8cf61d84-a382-451f-af1e-9088255930a3/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "8cf61d84-a382-451f-af1e-9088255930a3",
"variables": {
"team_id": "manchester-united-fc",
"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.
prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="8cf61d84-a382-451f-af1e-9088255930a3") — the "get_team_profile" function, which gets detailed profile information for a BeSoccer team from https://www.besoccer.com, including team identity, league/competition data, coach profile stats, and stadium details.. It takes team_id (str), timeout_seconds (int). Return the result as structured JSON.