workouts / #27
- userId
-
Anne Hamill @anne_hamill75
- kind
- sports
- name
- Recovery Routine
- durationMinutes
- 54
- caloriesBurned
- 512
- intensity
- high
- notes
- Great pump
- performedAt
- createdAt
Component variants
Medium
Recovery Routine
#27
Small
workouts/27 Related
References
curl -sS \
"https://example-data.com/api/v1/workouts/27" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/workouts/27"
);
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/27"
);
const workout = (await res.json()) as Workout;import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/27"
)
workout = res.json() {
"id": 27,
"userId": 9,
"kind": "sports",
"name": "Recovery Routine",
"durationMinutes": 54,
"caloriesBurned": 512,
"intensity": "high",
"notes": "Great pump",
"performedAt": "2025-10-09T22:20:11.763Z",
"createdAt": "2025-10-09T22:48:47.813Z"
}