Live
get_athlete_profile
athletic.netReturns an athlete's cross-country biography, seasons, teams, meets, and complete race history from https://athletic.net.
Parameters1
Runs4
Updated1d ago
Operational4 runs · 100% 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_athlete_profile?
Returns an athlete's cross-country biography, seasons, teams, meets, and complete race history from https://athletic.net. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass athlete_id and get the result back without maintaining a scraper.
Response
{
"meets": {},
"Gender": "<string>",
"LastName": "<string>",
"allTeams": {},
"FirstName": "<string>",
"IDAthlete": 0,
"resultsXC": [
{}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/7bf5ce1c-92a8-47ac-92f8-043a2548dd67/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "7bf5ce1c-92a8-47ac-92f8-043a2548dd67",
"variables": {
"athlete_id": 21311161
}
}'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="7bf5ce1c-92a8-47ac-92f8-043a2548dd67") — the "get_athlete_profile" function, which returns an athlete's cross-country biography, seasons, teams, meets, and complete race history from https://athletic.net.. It takes athlete_id (int). Return the result as structured JSON.