workouts / #16
- userId
-
Brycen Bayer @brycen_bayer60
- kind
- cardio
- name
- Upper Body Blast
- durationMinutes
- 42
- caloriesBurned
- 326
- intensity
- high
- notes
- Cardio felt easy
- performedAt
- createdAt
Component variants
Medium
Upper Body Blast
#16
Small
workouts/16 Related
References
curl -sS \
"https://example-data.com/api/v1/workouts/16" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/workouts/16"
);
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/16"
);
const workout = (await res.json()) as Workout;import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/16"
)
workout = res.json() {
"id": 16,
"userId": 6,
"kind": "cardio",
"name": "Upper Body Blast",
"durationMinutes": 42,
"caloriesBurned": 326,
"intensity": "high",
"notes": "Cardio felt easy",
"performedAt": "2026-03-28T10:44:16.091Z",
"createdAt": "2026-03-28T10:50:37.911Z"
}