workouts / #53
- userId
-
Guy Christiansen @guy.christiansen40
- kind
- flexibility
- name
- Morning Challenge
- durationMinutes
- 90
- caloriesBurned
- 888
- intensity
- very_high
- notes
- Cardio felt easy
- performedAt
- createdAt
Component variants
Medium
Morning Challenge
#53
Small
workouts/53 Related
References
curl -sS \
"https://example-data.com/api/v1/workouts/53" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/workouts/53"
);
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/53"
);
const workout = (await res.json()) as Workout;import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/53"
)
workout = res.json() {
"id": 53,
"userId": 21,
"kind": "flexibility",
"name": "Morning Challenge",
"durationMinutes": 90,
"caloriesBurned": 888,
"intensity": "very_high",
"notes": "Cardio felt easy",
"performedAt": "2026-02-24T18:23:38.568Z",
"createdAt": "2026-02-24T18:51:52.895Z"
}