workouts / #73
- userId
-
Jensen Bashirian @jensen_bashirian
- kind
- strength
- name
- Weekend Workout
- durationMinutes
- 72
- caloriesBurned
- 296
- intensity
- low
- notes
- Tough session but pushed through
- performedAt
- createdAt
Component variants
Medium
Weekend Workout
#73
Small
workouts/73 Related
References
curl -sS \
"https://example-data.com/api/v1/workouts/73" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/workouts/73"
);
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/73"
);
const workout = (await res.json()) as Workout;import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/73"
)
workout = res.json() {
"id": 73,
"userId": 29,
"kind": "strength",
"name": "Weekend Workout",
"durationMinutes": 72,
"caloriesBurned": 296,
"intensity": "low",
"notes": "Tough session but pushed through",
"performedAt": "2026-03-03T06:30:12.624Z",
"createdAt": "2026-03-03T07:02:40.368Z"
}