Marketplace
No threads yet
Live

get_team_roster

procyclingstats.com

Returns a professional team roster for one season from https://procyclingstats.com with numeric team ID, rider profiles, nationalities, PCS world rankings, and PCS points.

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_team_roster?

Returns a professional team roster for one season from https://procyclingstats.com with numeric team ID, rider profiles, nationalities, PCS world rankings, and PCS points. 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

{
  "riders": [
    {
      "name": "<string>",
      "pcs_points": 0,
      "nationality": "<string>",
      "profile_url": "<string>",
      "roster_order": 0,
      "pcs_world_rank": 0
    }
  ],
  "season": 0,
  "team_id": 0,
  "team_name": "<string>",
  "source_url": "<string>",
  "rider_count": 0,
  "division_code": "<string>",
  "team_country_code": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/8623dce9-7e7d-42c6-a91e-67b302907018/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "8623dce9-7e7d-42c6-a91e-67b302907018",
    "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="8623dce9-7e7d-42c6-a91e-67b302907018") — the "get_team_roster" function, which returns a professional team roster for one season from https://procyclingstats.com with numeric team ID, rider profiles, nationalities, PCS world rankings, and PCS points..

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