workouts / #21
- userId
-
Alvena Emmerich @alvena_emmerich52
- kind
- cardio
- name
- Easy Burn
- durationMinutes
- 88
- caloriesBurned
- 858
- intensity
- high
- notes
- Cardio felt easy
- performedAt
- createdAt
Component variants
Medium
Easy Burn
#21
Small
workouts/21 Related
References
curl -sS \
"https://example-data.com/api/v1/workouts/21" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/workouts/21"
);
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/21"
);
const workout = (await res.json()) as Workout;import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/21"
)
workout = res.json() {
"id": 21,
"userId": 8,
"kind": "cardio",
"name": "Easy Burn",
"durationMinutes": 88,
"caloriesBurned": 858,
"intensity": "high",
"notes": "Cardio felt easy",
"performedAt": "2026-03-17T04:18:48.391Z",
"createdAt": "2026-03-17T04:35:48.481Z"
}