workouts / #127
- userId
-
Samson Stroman @samson_stroman
- kind
- strength
- name
- Recovery Circuit
- durationMinutes
- 72
- caloriesBurned
- 473
- intensity
- medium
- notes
- Should have gone heavier
- performedAt
- createdAt
Component variants
Medium
Recovery Circuit
#127
Small
workouts/127 Related
References
curl -sS \
"https://example-data.com/api/v1/workouts/127" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/workouts/127"
);
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/127"
);
const workout = (await res.json()) as Workout;import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/127"
)
workout = res.json() {
"id": 127,
"userId": 52,
"kind": "strength",
"name": "Recovery Circuit",
"durationMinutes": 72,
"caloriesBurned": 473,
"intensity": "medium",
"notes": "Should have gone heavier",
"performedAt": "2025-09-01T13:59:57.320Z",
"createdAt": "2025-09-01T14:01:47.239Z"
}