Live
get_division_results
athletic.netReturns individual cross country placements, team scores, and participating teams for a meet division from https://athletic.net after obtaining fresh meet authorization.
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 get_division_results?
Returns individual cross country placements, team scores, and participating teams for a meet division from https://athletic.net after obtaining fresh meet authorization. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass meet_id, div_id and get the result back without maintaining a scraper.
Response
{
"host": true,
"teams": [
{}
],
"div_id": 0,
"meet_id": 0,
"division": {},
"resultsXC": [
{}
],
"teamScores": [
{}
],
"currentEventValid": true
}Call it
curl --location 'https://us-prod.notte.cc/functions/d7829d97-3b93-4ec0-aa25-c32c3cfe6865/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "d7829d97-3b93-4ec0-aa25-c32c3cfe6865",
"variables": {
"meet_id": 271657,
"div_id": 1082213
}
}'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="d7829d97-3b93-4ec0-aa25-c32c3cfe6865") — the "get_division_results" function, which returns individual cross country placements, team scores, and participating teams for a meet division from https://athletic.net after obtaining fresh meet authorization.. It takes meet_id (int), div_id (int). Return the result as structured JSON.