Marketplace
No threads yet
Live

get_rider_tier_statistics

procyclingstats.com

Returns a rider's last 24 months of PCS points and wins grouped into seven race tiers from https://procyclingstats.com.

Parameters3
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_tier_statistics?

Returns a rider's last 24 months of PCS points and wins grouped into seven race tiers from https://procyclingstats.com. 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, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "tiers": [
    {
      "tier": "<string>",
      "wins": 0,
      "pcs_points": 0
    }
  ],
  "rider_url": "<string>",
  "rider_name": "<string>",
  "total_wins": 0,
  "window_end": "<string>",
  "source_urls": [
    "<string>"
  ],
  "window_start": "<string>",
  "window_months": 0,
  "seasons_fetched": [
    0
  ],
  "total_pcs_points": 0,
  "categorized_result_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/1ba2dafc-9115-48ea-a63b-71c21f263ba2/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "1ba2dafc-9115-48ea-a63b-71c21f263ba2",
    "variables": {
        "rider": "DEFAULT_RIDER",
        "as_of_date": "",
        "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="1ba2dafc-9115-48ea-a63b-71c21f263ba2") — the "get_rider_tier_statistics" function, which returns a rider's last 24 months of PCS points and wins grouped into seven race tiers from https://procyclingstats.com..

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