get_stage_race_classification_standings
procyclingstats.comReturns full rider standings for a stage race classification page on https://procyclingstats.com. Supports GC, points, KOM, and youth classification URLs with ordered rows and all non-empty per-rider fields.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_stage_race_classification_standings?
Returns full rider standings for a stage race classification page on https://procyclingstats.com. Supports GC, points, KOM, and youth classification URLs with ordered rows and all non-empty per-rider fields. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass classification_url, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"race_name": "<string>",
"standings": [
{
"links": {},
"fields": {}
}
],
"source_url": "<string>",
"classification": "<string>",
"standings_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/fcefa36f-8dd0-47dc-a902-5e4777c38b18/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "fcefa36f-8dd0-47dc-a902-5e4777c38b18",
"variables": {
"classification_url": "race/tour-de-france/2024/stage-1-gc",
"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.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="fcefa36f-8dd0-47dc-a902-5e4777c38b18") — the "get_stage_race_classification_standings" function, which returns full rider standings for a stage race classification page on https://procyclingstats.com. Supports GC, points, KOM, and youth classification URLs with ordered rows and all non-empty per-rider fields.. It takes classification_url (str), timeout_seconds (int). Return the result as structured JSON.