Marketplace
No threads yet
Live

get_boys_outdoor_track_rankings

milesplit.com

Returns up to 20 high school boys outdoor track and field rankings by state, event, and year from https://milesplit.com. Relay entries are team-level; individual entries include athlete, team, wind, grade, and graduation year when available.

Parameters4
Runs10
Updated10d ago
Operational10 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 get_boys_outdoor_track_rankings?

Returns up to 20 high school boys outdoor track and field rankings by state, event, and year from https://milesplit.com. Relay entries are team-level; individual entries include athlete, team, wind, grade, and graduation year when available. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass state, event, year, limit and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "site": "<string>",
  "year": 0,
  "count": 0,
  "event": "<string>",
  "limit": 0,
  "state": "<string>",
  "gender": "<string>",
  "season": "<string>",
  "rankings": [
    {}
  ],
  "source_url": "<string>",
  "record_type": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/09a8edad-825e-48ad-ba12-63ca4b69e2c4/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "09a8edad-825e-48ad-ba12-63ca4b69e2c4",
    "variables": {
        "state": "CA",
        "event": "100m",
        "year": 2025,
        "limit": 20
    }
}'

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="09a8edad-825e-48ad-ba12-63ca4b69e2c4") — the "get_boys_outdoor_track_rankings" function, which returns up to 20 high school boys outdoor track and field rankings by state, event, and year from https://milesplit.com. Relay entries are team-level; individual entries include athlete, team, wind, grade, and graduation year when available..

It takes state (str), event (str), year (int), limit (int). Return the result as structured JSON.