workouts / #26
- userId
-
Anne Hamill @anne_hamill75
- kind
- strength
- name
- Full Routine
- durationMinutes
- 31
- caloriesBurned
- 220
- intensity
- medium
- notes
- Ran out of time
- performedAt
- createdAt
Component variants
Medium
Full Routine
#26
Small
workouts/26 Related
References
curl -sS \
"https://example-data.com/api/v1/workouts/26" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/workouts/26"
);
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/26"
);
const workout = (await res.json()) as Workout;import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/26"
)
workout = res.json() {
"id": 26,
"userId": 9,
"kind": "strength",
"name": "Full Routine",
"durationMinutes": 31,
"caloriesBurned": 220,
"intensity": "medium",
"notes": "Ran out of time",
"performedAt": "2026-05-01T18:24:21.757Z",
"createdAt": "2026-05-01T18:57:34.866Z"
}