get_rider_teams
Retrieve a professional cyclist's complete team history, including years active, team names, and details. Input the rider's ID to generate a chronological overview of their career affiliations.
Instructions
Get a detailed history of a professional cyclist's team affiliations throughout their career. This tool provides a chronological list of all teams the rider has been part of, including years and team 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 team history for Peter Sagan (ID: 12345)
- Get career team changes for Chris Froome (ID: 67890)
Returns a formatted string with:
- Complete team history
- Years with each team
- Team names and details
- Chronological organization
Input Schema
Name | Required | Description | Default |
---|---|---|---|
rider_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"rider_id": {
"title": "Rider Id",
"type": "integer"
}
},
"required": [
"rider_id"
],
"title": "get_rider_teamsArguments",
"type": "object"
}