get-exercise-progress-by-ids
Retrieve weight, reps, and sets progress for specific exercises over time. Filter by date range to analyze workout history ordered by most recent first.
Instructions
Get progress history for specific exercises between start and end dates. Returns exercise data including weights, reps, and sets for each workout. Results are ordered by date descending. Useful for tracking progress over time for particular exercises.
Example: { "exerciseIds": ["bench-press-123", "squat-456"], // Required: Array of exercise IDs "limit": 5, // Optional: Number of workouts (0-10, default: 10) "startDate": "2024-01-01T00:00:00Z", // Optional: Filter after this date "endDate": "2024-03-20T23:59:59Z" // Optional: Filter before this date }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| exerciseIds | Yes | IDs of the exercises to retrieve progress for | |
| limit | No | Number of latest workouts to retrieve | |
| startDate | No | Optional: ISO date string to filter workouts after this date | |
| endDate | No | Optional: ISO date string to filter workouts before this date |