Daily steps
garmin_get_stepsRetrieve daily step totals, step goal, and distance for any date range from Garmin Connect. This compact tool answers step-count queries without the overhead of full daily summaries.
Instructions
Get daily step totals, step goal and distance for each day in a range. Cheap and compact -- prefer this over repeated daily-summary calls when the question is only about step counts over time.
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 |