workouts / #203
- userId
-
Stephan Heller @stephan.heller
- kind
- flexibility
- name
- Lower Body Routine
- durationMinutes
- 81
- caloriesBurned
- 814
- intensity
- very_high
- notes
- Did extra sets
- performedAt
- createdAt
Component variants
Medium
Lower Body Routine
#203
Small
workouts/203 Related
References
curl -sS \
"https://example-data.com/api/v1/workouts/203" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/workouts/203"
);
const workout = await res.json();import type { Workout } from "https://example-data.com/types/workouts.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/workouts/203"
);
const workout = (await res.json()) as Workout;import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/203"
)
workout = res.json() {
"id": 203,
"userId": 82,
"kind": "flexibility",
"name": "Lower Body Routine",
"durationMinutes": 81,
"caloriesBurned": 814,
"intensity": "very_high",
"notes": "Did extra sets",
"performedAt": "2025-12-15T17:57:37.275Z",
"createdAt": "2025-12-15T18:56:42.560Z"
}