workouts / #230
- userId
-
Filiberto Fay @filiberto.fay59
- kind
- flexibility
- name
- Core Session
- durationMinutes
- 15
- caloriesBurned
- 129
- intensity
- high
- notes
- Tough session but pushed through
- performedAt
- createdAt
Component variants
Medium
Core Session
#230
Small
workouts/230 Related
References
curl -sS \
"https://example-data.com/api/v1/workouts/230" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/workouts/230"
);
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/230"
);
const workout = (await res.json()) as Workout;import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/230"
)
workout = res.json() {
"id": 230,
"userId": 92,
"kind": "flexibility",
"name": "Core Session",
"durationMinutes": 15,
"caloriesBurned": 129,
"intensity": "high",
"notes": "Tough session but pushed through",
"performedAt": "2025-09-15T12:05:31.001Z",
"createdAt": "2025-09-15T12:31:09.828Z"
}