get_start_list
Retrieve the start list for a specific cycling race edition, including rider numbers, names, and teams. Specify the race ID and optional year to access structured race participation details.
Instructions
Get the start list for a specific edition of a cycling race. The start list includes rider numbers, names, and teams.
Note: If you don't know the race's ID, use the search_race tool first to find it by name.
If no year is specified, the current year will be used.
Example usage:
- Get start list for current year's Tour de France (Race ID: 17)
- Get start list for 2023 Paris-Roubaix (Race ID: 30, Year: 2023)
Returns a formatted string with:
- Race name and year
- List of participating teams
- Riders for each team with their race numbers
Input Schema
Name | Required | Description | Default |
---|---|---|---|
race_id | Yes | ||
year | No |
Input Schema (JSON Schema)
{
"properties": {
"race_id": {
"title": "Race Id",
"type": "integer"
},
"year": {
"default": null,
"title": "Year",
"type": "integer"
}
},
"required": [
"race_id"
],
"title": "get_start_listArguments",
"type": "object"
}