Marketplace
No threads yet
Live

get_startlist_specialty_rankings

procyclingstats.com

Returns merged per-rider specialty points and ranks from all six tables on a race startlist at https://procyclingstats.com, including hidden rows.

Parameters2
Runs7
Updated3d ago
Operational7 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_startlist_specialty_rankings?

Returns merged per-rider specialty points and ranks from all six tables on a race startlist at https://procyclingstats.com, including hidden rows. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass race, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "riders": [
    {
      "gc_rank": 0,
      "gc_points": 0,
      "rider_url": "<string>",
      "hills_rank": 0,
      "rider_name": "<string>",
      "sprint_rank": 0,
      "climber_rank": 0,
      "country_code": "<string>",
      "hills_points": 0,
      "sprint_points": 0,
      "climber_points": 0,
      "time_trial_rank": 0,
      "time_trial_points": 0,
      "one_day_races_rank": 0,
      "one_day_races_points": 0
    }
  ],
  "race_name": "<string>",
  "race_year": 0,
  "source_url": "<string>",
  "rider_count": 0,
  "category_row_counts": {}
}

Call it

curl --location 'https://us-prod.notte.cc/functions/b83a54d0-28d9-44a9-83a3-a1119d3a29b6/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "b83a54d0-28d9-44a9-83a3-a1119d3a29b6",
    "variables": {
        "race": "DEFAULT_RACE",
        "timeout_seconds": 35
    }
}'

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="b83a54d0-28d9-44a9-83a3-a1119d3a29b6") — the "get_startlist_specialty_rankings" function, which returns merged per-rider specialty points and ranks from all six tables on a race startlist at https://procyclingstats.com, including hidden rows..

It takes race (str), timeout_seconds (int). Return the result as structured JSON.