Marketplace
No threads yet
Live

get_rider_schedule

procyclingstats.com

Returns a rider's upcoming races from https://procyclingstats.com, expanding active stage races into remaining dated stages with available timing and category details.

Parameters4
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_rider_schedule?

Returns a rider's upcoming races from https://procyclingstats.com, expanding active stage races into remaining dated stages with available timing and category details. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass rider, as_of_date, include_stage_details, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "entries": [
    {
      "date": "<string>",
      "arrival": "<string>",
      "weekday": "<string>",
      "end_date": "<string>",
      "race_url": "<string>",
      "uci_tour": "<string>",
      "departure": "<string>",
      "race_name": "<string>",
      "start_time": "<string>",
      "distance_km": 0,
      "country_code": "<string>",
      "profile_score": 0,
      "race_category": "<string>",
      "schedule_type": "<string>",
      "classification": "<string>",
      "rider_race_url": "<string>",
      "parent_race_url": "<string>",
      "vertical_meters": 0,
      "parent_race_name": "<string>"
    }
  ],
  "as_of_date": "<string>",
  "rider_name": "<string>",
  "source_url": "<string>",
  "entry_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/585dd5e2-6d6d-49d1-ac28-c281ed3316d4/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "585dd5e2-6d6d-49d1-ac28-c281ed3316d4",
    "variables": {
        "rider": "tadej-pogacar",
        "as_of_date": "",
        "include_stage_details": true,
        "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="585dd5e2-6d6d-49d1-ac28-c281ed3316d4") — the "get_rider_schedule" function, which returns a rider's upcoming races from https://procyclingstats.com, expanding active stage races into remaining dated stages with available timing and category details..

It takes rider (str), as_of_date (str), include_stage_details (bool), timeout_seconds (int). Return the result as structured JSON.