List activities
garmin_list_activitiesList recorded workouts in a date range with key metrics like type, duration, distance, pace, heart rate, and calories, then use the returned activity ID to fetch full session details.
Instructions
List recorded workouts in a date range, newest first, with activity ID, type, name, start time, duration, distance, pace, average and max heart rate, calories, elevation and training effect. Use this to find an activity, then pass its activityId to garmin_get_activity for the full detail of a single session.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| detail | No | 'summary' (default) drops per-minute sample series and truncates long lists, which is what you want for almost every question. 'full' returns Garmin's raw payload including every sample -- accurate but potentially enormous, so use it only when the individual data points matter. | summary |
| end_date | No | Date as YYYY-MM-DD, or relative: 'today', 'yesterday', '-7d', '-2w', '-3m'. | today |
| start_date | No | Date as YYYY-MM-DD, or relative: 'today', 'yesterday', '-7d', '-2w', '-3m'. | -7d |