get_rider_grand_tour_results
Retrieve detailed Grand Tour results for a cyclist, including overall classification, stage wins, and special classification outcomes, based on the rider's ID. Use this tool to analyze performance in Tour de France, Giro d'Italia, and Vuelta a España.
Instructions
Get comprehensive results for a rider in Grand Tours (Tour de France, Giro d'Italia, and Vuelta a España). This tool provides detailed information about a rider's performance in cycling's most prestigious three-week races, including their overall classification positions, stage wins, and special classification results. The data is organized chronologically and includes all relevant race details.
Note: If you don't know the rider's ID, use the search_rider tool first to find it by name.
Example usage:
- Get Grand Tour results for Tadej Pogačar (ID: 16973)
- Get Grand Tour results for Jonas Vingegaard (ID: 16974)
Returns a formatted string with:
- Results for each Grand Tour (Tour de France, Giro, Vuelta)
- Overall classification positions
- Stage wins and special classification results
- Time gaps and race details
Input Schema
Name | Required | Description | Default |
---|---|---|---|
rider_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"rider_id": {
"title": "Rider Id",
"type": "integer"
}
},
"required": [
"rider_id"
],
"title": "get_rider_grand_tour_resultsArguments",
"type": "object"
}