get_activity_details
Retrieve comprehensive fitness activity details, including workouts and metrics, from Intervals.icu using the activity ID and optional API key.
Instructions
Get detailed information for a specific activity from Intervals.icu
Args:
activity_id: The Intervals.icu activity ID
api_key: The Intervals.icu API key (optional, will use API_KEY from .env if not provided)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
activity_id | Yes | ||
api_key | No |
Input Schema (JSON Schema)
{
"properties": {
"activity_id": {
"title": "Activity Id",
"type": "string"
},
"api_key": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Api Key"
}
},
"required": [
"activity_id"
],
"title": "get_activity_detailsArguments",
"type": "object"
}