get_race_victory_table
Retrieve the all-time victory table for a cycling race, displaying the most successful riders, their number of victories, and the years they won. Use the race ID to access historical achievements.
Instructions
Get the all-time victory table for a cycling race. This tool provides a historical summary of the most successful riders in a specific race, showing the number of victories for each rider throughout the race's history.
Note: If you don't know the race's ID, use the search_race tool first to find it by name.
Example usage:
- Get victory table for Tour de France (ID: 17)
- Get victory table for Paris-Roubaix (ID: 30)
Returns a formatted string with:
- Race name
- List of riders with the most victories
- Number of victories for each rider
- Years of victories where available
Input Schema
Name | Required | Description | Default |
---|---|---|---|
race_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"race_id": {
"title": "Race Id",
"type": "integer"
}
},
"required": [
"race_id"
],
"title": "get_race_victory_tableArguments",
"type": "object"
}