Live
list_xc_team_roster
athletic.netReturns cross-country roster athlete IDs, names, genders, and available profile images by team and season from https://athletic.net.
Parameters2
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 list_xc_team_roster?
Returns cross-country roster athlete IDs, names, genders, and available profile images by team and season 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 team_id, season_year and get the result back without maintaining a scraper.
Response
{
"athletes": [
{}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/ac95532f-5b6c-4d82-b03f-b3ee4dbda712/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "ac95532f-5b6c-4d82-b03f-b3ee4dbda712",
"variables": {
"team_id": 220,
"season_year": 2025
}
}'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="ac95532f-5b6c-4d82-b03f-b3ee4dbda712") — the "list_xc_team_roster" function, which returns cross-country roster athlete IDs, names, genders, and available profile images by team and season from https://athletic.net.. It takes team_id (int), season_year (int). Return the result as structured JSON.