get-athlete-stats
Retrieve detailed activity statistics for a specific athlete, including recent, year-to-date, and all-time data. Use the athlete's unique ID obtained from the get-athlete-profile tool.
Instructions
Fetches the activity statistics (recent, YTD, all-time) for a specific athlete using their ID. Requires the athleteId obtained from the get-athlete-profile tool.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
athleteId | Yes | The unique identifier of the athlete to fetch stats for. Obtain this ID first by calling the get-athlete-profile tool. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"athleteId": {
"description": "The unique identifier of the athlete to fetch stats for. Obtain this ID first by calling the get-athlete-profile tool.",
"exclusiveMinimum": 0,
"type": "integer"
}
},
"required": [
"athleteId"
],
"type": "object"
}