get_race_details
Retrieve detailed cycling race information, including history, statistics, route, and classification data, by specifying the race ID. Use to analyze race characteristics or filter by classification for precise insights.
Instructions
Get comprehensive details about a cycling race. This tool provides detailed information about a specific race, including its history, key statistics, route details, and other relevant information. The data can be filtered by specific classification.
Note: If you don't know the race's ID, use the search_race tool first to find it by name.
Example usage:
- Get details for Tour de France (ID: 17)
- Get details for Paris-Roubaix (ID: 30)
Returns a formatted string with:
- Race name, country, and category
- Historical information and key statistics
- Course details and characteristics
- Optional classification details
Input Schema
Name | Required | Description | Default |
---|---|---|---|
classification_num | No | ||
race_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"classification_num": {
"default": null,
"title": "Classification Num",
"type": "integer"
},
"race_id": {
"title": "Race Id",
"type": "integer"
}
},
"required": [
"race_id"
],
"title": "get_race_detailsArguments",
"type": "object"
}