get_uci_rankings
Access UCI rankings for riders, teams, or nations by filtering results based on ranking type, year, and category. Retrieve formatted rankings with positions and points in a readable structure.
Instructions
Get UCI rankings for riders, teams, or nations. This tool provides access to the UCI ranking data for professional cyclists, teams, or nations. Results can be filtered by ranking type, year, and category.
Example usage:
- Get World UCI rider rankings for 2023
- Get Europe Tour UCI team rankings for 2022
- Get UCI nation rankings for 2023 in the World category
Returns a formatted string with:
- Ranking list with positions and points
- Filtered by specified categories
- Organized in a readable format
- Option to filter by country
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | No | world | |
country_code | No | ||
page_num | No | ||
rank_type | No | riders | |
year | No |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"default": "world",
"title": "Category",
"type": "string"
},
"country_code": {
"default": null,
"title": "Country Code",
"type": "string"
},
"page_num": {
"default": 1,
"title": "Page Num",
"type": "integer"
},
"rank_type": {
"default": "riders",
"title": "Rank Type",
"type": "string"
},
"year": {
"default": null,
"title": "Year",
"type": "integer"
}
},
"title": "get_uci_rankingsArguments",
"type": "object"
}