workouts / #72
- userId
-
Queen Lubowitz @queen.lubowitz76
- kind
- mixed
- name
- Morning Blast
- durationMinutes
- 49
- caloriesBurned
- 467
- intensity
- high
- notes
- Should have gone heavier
- performedAt
- createdAt
Component variants
Medium
Morning Blast
#72
Small
workouts/72 Related
References
curl -sS \
"https://example-data.com/api/v1/workouts/72" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/workouts/72"
);
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/72"
);
const workout = (await res.json()) as Workout;import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/72"
)
workout = res.json() {
"id": 72,
"userId": 28,
"kind": "mixed",
"name": "Morning Blast",
"durationMinutes": 49,
"caloriesBurned": 467,
"intensity": "high",
"notes": "Should have gone heavier",
"performedAt": "2025-09-25T01:09:37.814Z",
"createdAt": "2025-09-25T01:12:49.657Z"
}