Marketplace
No threads yet
Live

get_rider_recent_results

procyclingstats.com

Returns the 20 most recent actual rider race and stage results from https://procyclingstats.com with positions, routes, distance, vertical meters, points, and result context.

Parameters2
Runs6
Updated3d 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 get_rider_recent_results?

Returns the 20 most recent actual rider race and stage results from https://procyclingstats.com with positions, routes, distance, vertical meters, points, and result context. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass url, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "results": [
    {
      "date": "<string>",
      "route": "<string>",
      "race_url": "<string>",
      "race_name": "<string>",
      "pcs_points": 0,
      "race_class": "<string>",
      "result_url": "<string>",
      "stage_name": "<string>",
      "uci_points": 0,
      "distance_km": 0,
      "jersey_worn": "<string>",
      "result_note": "<string>",
      "country_code": "<string>",
      "is_time_trial": true,
      "profile_score": 0,
      "uci_gc_points": 0,
      "start_location": "<string>",
      "finish_location": "<string>",
      "time_trial_type": "<string>",
      "vertical_meters": 0,
      "finishing_position": "<string>",
      "gc_rank_after_stage": 0
    }
  ],
  "rider_id": 0,
  "rider_name": "<string>",
  "source_url": "<string>",
  "result_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/6011f6c3-f979-438b-ab0e-8dcd12a1258d/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "6011f6c3-f979-438b-ab0e-8dcd12a1258d",
    "variables": {
        "url": "DEFAULT_URL",
        "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="6011f6c3-f979-438b-ab0e-8dcd12a1258d") — the "get_rider_recent_results" function, which returns the 20 most recent actual rider race and stage results from https://procyclingstats.com with positions, routes, distance, vertical meters, points, and result context..

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