get_rider_team_and_ranking
Retrieve a professional cyclist's team history and UCI ranking details to analyze their career progression, including current team affiliation and performance points over time.
Instructions
Get information about a professional cyclist's team affiliations and UCI rankings throughout their career. This tool retrieves the rider's team history and their UCI ranking points over time. It provides a comprehensive overview of their professional career progression through different teams and their performance in the UCI rankings.
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 and ranking history for Tadej Pogačar (ID: 16973)
- Get team and ranking history for Jonas Vingegaard (ID: 16974)
Returns a formatted string with:
- Complete team history with years
- UCI ranking positions and points
- Career progression timeline
- Current team and ranking status
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_team_and_rankingArguments",
"type": "object"
}