get_rider_race_history
Retrieve a professional cyclist's complete race history, including positions, times, and race categories, optionally filtered by year. Use this tool to analyze a rider's career performance in detail.
Instructions
Get the complete race history of a professional cyclist, optionally filtered by year. This tool retrieves a comprehensive list of all races the rider has participated in, including their positions, times, and race categories. It provides a detailed overview of their racing career.
Note: If you don't know the rider's ID, use the search_rider tool first to find it by name.
Example usage:
- Get complete race history for Tadej Pogačar (ID: 16973)
- Get 2023 race history for Jonas Vingegaard (ID: 16974)
Returns a formatted string with:
- All races organized by year
- Position and time for each race
- Race category and details
- Chronological organization
Input Schema
Name | Required | Description | Default |
---|---|---|---|
rider_id | Yes | ||
year | No |
Input Schema (JSON Schema)
{
"properties": {
"rider_id": {
"title": "Rider Id",
"type": "integer"
},
"year": {
"default": null,
"title": "Year",
"type": "integer"
}
},
"required": [
"rider_id"
],
"title": "get_rider_race_historyArguments",
"type": "object"
}