workouts / #204
- userId
-
Stephan Heller @stephan.heller
- kind
- mixed
- name
- Evening Burn
- durationMinutes
- 45
- caloriesBurned
- 370
- intensity
- high
- notes
- Personal best on squats
- performedAt
- createdAt
Component variants
Medium
Evening Burn
#204
Small
workouts/204 Related
References
curl -sS \
"https://example-data.com/api/v1/workouts/204" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/workouts/204"
);
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/204"
);
const workout = (await res.json()) as Workout;import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/204"
)
workout = res.json() {
"id": 204,
"userId": 82,
"kind": "mixed",
"name": "Evening Burn",
"durationMinutes": 45,
"caloriesBurned": 370,
"intensity": "high",
"notes": "Personal best on squats",
"performedAt": "2025-08-13T05:02:17.710Z",
"createdAt": "2025-08-13T05:11:24.155Z"
}