workouts / #137
- userId
-
Simeon Robel @simeon_robel12
- kind
- cardio
- name
- Intense Training
- durationMinutes
- 65
- caloriesBurned
- 625
- intensity
- high
- notes
- Cardio felt easy
- performedAt
- createdAt
Component variants
Medium
Intense Training
#137
Small
workouts/137 Related
References
curl -sS \
"https://example-data.com/api/v1/workouts/137" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/workouts/137"
);
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/137"
);
const workout = (await res.json()) as Workout;import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/137"
)
workout = res.json() {
"id": 137,
"userId": 55,
"kind": "cardio",
"name": "Intense Training",
"durationMinutes": 65,
"caloriesBurned": 625,
"intensity": "high",
"notes": "Cardio felt easy",
"performedAt": "2025-11-13T22:25:42.532Z",
"createdAt": "2025-11-13T22:58:00.754Z"
}