Marketplace
No threads yet
Live

list_xc_rankings

athletic.net

Returns the top cross-country athletes for an Athletic.net division and gender, including best marks, teams, and meets from https://athletic.net.

Parameters2
Runs6
Updated1d ago
Operational6 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is list_xc_rankings?

Returns the top cross-country athletes for an Athletic.net division and gender, including best marks, teams, and meets 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 div_id, gender and get the result back without maintaining a scraper.

Response

{
  "div_id": 0,
  "gender": "<string>",
  "distance": {},
  "rankings": [
    {}
  ],
  "ranking_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/2fbd70af-c6c6-4ec6-a14a-e25eb65ee1a4/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "2fbd70af-c6c6-4ec6-a14a-e25eb65ee1a4",
    "variables": {
        "div_id": 74938,
        "gender": "m"
    }
}'

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="2fbd70af-c6c6-4ec6-a14a-e25eb65ee1a4") — the "list_xc_rankings" function, which returns the top cross-country athletes for an Athletic.net division and gender, including best marks, teams, and meets from https://athletic.net..

It takes div_id (int), gender (str). Return the result as structured JSON.