get_rider_year_results
Retrieve a professional cyclist's race results for a specific year, including positions, race categories, dates, and performance details. Use rider ID and year to access comprehensive, chronologically organized data.
Instructions
Retrieve detailed results for a professional cyclist for a specific year. This tool provides comprehensive information about a rider's performance in all races during a given calendar year. It includes positions achieved, race categories, dates, and additional 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 2023 results for Tadej Pogačar (ID: 16973)
- Get 2022 results for Jonas Vingegaard (ID: 16974)
Returns a formatted string with:
- Complete results for the specified year
- Position and time for each race
- Race category and details
- Chronological organization by date
Input Schema
Name | Required | Description | Default |
---|---|---|---|
rider_id | Yes | ||
year | Yes |
Input Schema (JSON Schema)
{
"properties": {
"rider_id": {
"title": "Rider Id",
"type": "integer"
},
"year": {
"title": "Year",
"type": "integer"
}
},
"required": [
"rider_id",
"year"
],
"title": "get_rider_year_resultsArguments",
"type": "object"
}