get_rider_victories
Retrieve a detailed list of a cyclist's UCI-registered race victories, including race categories, dates, and years. Optionally filter results to display only WorldTour wins. Use rider ID to fetch data.
Instructions
Get a comprehensive list of a rider's UCI victories. This tool retrieves detailed information about all UCI-registered race victories achieved by the cyclist throughout their career. Victories can be filtered to show only WorldTour wins if desired.
Note: If you don't know the rider's ID, use the search_rider tool first to find it by name.
Example usage:
- Get all UCI victories for Tadej Pogačar (ID: 16973)
- Get WorldTour victories for Jonas Vingegaard (ID: 16974)
Returns a formatted string with:
- Complete list of victories
- Race details including category
- Date and year of each victory
- Option to filter by WorldTour races only
Input Schema
Name | Required | Description | Default |
---|---|---|---|
rider_id | Yes | ||
world_tour_only | No |
Input Schema (JSON Schema)
{
"properties": {
"rider_id": {
"title": "Rider Id",
"type": "integer"
},
"world_tour_only": {
"default": false,
"title": "World Tour Only",
"type": "boolean"
}
},
"required": [
"rider_id"
],
"title": "get_rider_victoriesArguments",
"type": "object"
}