workouts / #190
- userId
-
Jesse Kiehn @jesse_kiehn92
- kind
- strength
- name
- Recovery Training
- durationMinutes
- 48
- caloriesBurned
- 239
- intensity
- medium
- notes
- Personal best on squats
- performedAt
- createdAt
Component variants
Medium
Recovery Training
#190
Small
workouts/190 Related
References
curl -sS \
"https://example-data.com/api/v1/workouts/190" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/workouts/190"
);
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/190"
);
const workout = (await res.json()) as Workout;import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/190"
)
workout = res.json() {
"id": 190,
"userId": 76,
"kind": "strength",
"name": "Recovery Training",
"durationMinutes": 48,
"caloriesBurned": 239,
"intensity": "medium",
"notes": "Personal best on squats",
"performedAt": "2026-03-15T03:24:26.354Z",
"createdAt": "2026-03-15T03:27:51.732Z"
}