workouts / #67
- userId
-
Melvina Reilly @melvina_reilly83
- kind
- sports
- name
- HIIT Challenge
- durationMinutes
- 73
- caloriesBurned
- 650
- intensity
- high
- notes
- Great pump
- performedAt
- createdAt
Component variants
Medium
HIIT Challenge
#67
Small
workouts/67 Related
References
curl -sS \
"https://example-data.com/api/v1/workouts/67" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/workouts/67"
);
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/67"
);
const workout = (await res.json()) as Workout;import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/67"
)
workout = res.json() {
"id": 67,
"userId": 26,
"kind": "sports",
"name": "HIIT Challenge",
"durationMinutes": 73,
"caloriesBurned": 650,
"intensity": "high",
"notes": "Great pump",
"performedAt": "2026-02-24T04:09:31.279Z",
"createdAt": "2026-02-24T04:39:15.511Z"
}