routines
Get workout by ID
Retrieve a single workout with its exercise prescriptions.
get/workouts/{workout_id}
Path parameters
workout_idinteger required
Workout ID
Workout ID
Query parameters
langstring nullable
Response language code (e.g. 'en-us', 'pt-br'). Defaults to 'en-us' when omitted. See GET /languages for the full list. Non-English languages require GROWTH tier or higher (BASIC keys get them in the Playground).
Response language code (e.g. 'en-us', 'pt-br'). Defaults to 'en-us' when omitted. See GET /languages for the full list. Non-English languages require GROWTH tier or higher (BASIC keys get them in the Playground).
Response
Successful Response
Example response
{
"description": "A beginner chest and shoulders workout",
"difficulty": "Beginner",
"equipment": [
"Barbell",
"Dumbbells"
],
"exercises": [
{
"category": "Barbell",
"difficulty": "Intermediate",
"exercise": {
"id": 4,
"name": "Barbell Bench Press"
},
"reps_or_duration": "reps",
"reps_or_duration_count": "5-8",
"sets": "3",
"sort": 1
}
],
"goal": "Build muscle",
"id": 1,
"muscles_targeted": [
"Chest",
"Shoulders"
],
"name": "Beginner Bodybuilder - Chest and Shoulders",
"slug": "beginner-bodybuilder-chest-and-shoulders"
}Changes
No recorded changes to this endpoint across all 1 revision of this API.