workouts / #30
- userId
-
Leonel Hamill @leonel_hamill33
- kind
- strength
- name
- Quick Blast
- durationMinutes
- 32
- caloriesBurned
- 329
- intensity
- high
- notes
- Needed more rest between sets
- performedAt
- createdAt
Component variants
Medium
Quick Blast
#30
Small
workouts/30 Related
References
curl -sS \
"https://example-data.com/api/v1/workouts/30" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/workouts/30"
);
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/30"
);
const workout = (await res.json()) as Workout;import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/30"
)
workout = res.json() {
"id": 30,
"userId": 11,
"kind": "strength",
"name": "Quick Blast",
"durationMinutes": 32,
"caloriesBurned": 329,
"intensity": "high",
"notes": "Needed more rest between sets",
"performedAt": "2026-02-27T01:53:15.741Z",
"createdAt": "2026-02-27T02:30:02.538Z"
}