get_race_edition_results
Retrieve detailed cycling race results for a specific edition, including rankings, time gaps, rider names, and teams. Filter by classification or stage using race ID and year for accurate data.
Instructions
Get detailed results for a specific edition of a cycling race. This tool provides comprehensive results for a particular edition of a race, including rankings, time gaps, and other relevant statistics. Results can be filtered by classification or stage.
Note: If you don't know the race's ID, use the search_race tool first to find it by name.
Example usage:
- Get 2023 Tour de France general classification results (Race ID: 17, Year: 2023)
- Get 2022 Paris-Roubaix results (Race ID: 30, Year: 2022)
- Get results for stage 5 of 2023 Tour de France (Race ID: 17, Year: 2023, Stage: 5)
Returns a formatted string with:
- Race name, year, and category
- Complete result list with rankings and time gaps
- Rider names and teams
- Classification or stage specific information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
classification_num | No | ||
race_id | Yes | ||
stage_num | No | ||
year | Yes |
Input Schema (JSON Schema)
{
"properties": {
"classification_num": {
"default": null,
"title": "Classification Num",
"type": "integer"
},
"race_id": {
"title": "Race Id",
"type": "integer"
},
"stage_num": {
"default": null,
"title": "Stage Num",
"type": "integer"
},
"year": {
"title": "Year",
"type": "integer"
}
},
"required": [
"race_id",
"year"
],
"title": "get_race_edition_resultsArguments",
"type": "object"
}