Live
list_uci_professional_teams
procyclingstats.comLists all men's UCI WorldTeams and UCI ProTeams for a season, including country codes, divisions, roster sizes, and team pages from https://procyclingstats.com.
Parameters1
Runs11
Updated10d ago
Operational11 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_uci_professional_teams?
Lists all men's UCI WorldTeams and UCI ProTeams for a season, including country codes, divisions, roster sizes, and team pages 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 year and get the result back without maintaining a scraper.
Response
{
"year": 0,
"teams": [
{
"url": "<string>",
"name": "<string>",
"division": "<string>",
"rider_count": 0,
"country_code": "<string>"
}
],
"source_url": "<string>",
"team_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/695eba1a-79ce-4718-9203-85027403b95b/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "695eba1a-79ce-4718-9203-85027403b95b",
"variables": {
"year": 2024
}
}'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="695eba1a-79ce-4718-9203-85027403b95b") — the "list_uci_professional_teams" function, which lists all men's UCI WorldTeams and UCI ProTeams for a season, including country codes, divisions, roster sizes, and team pages from https://procyclingstats.com.. It takes year (int). Return the result as structured JSON.