workouts / #70
- userId
-
Rosella Homenick @rosella.homenick
- kind
- sports
- name
- Upper Body Challenge
- durationMinutes
- 19
- caloriesBurned
- 193
- intensity
- high
- notes
- Tough session but pushed through
- performedAt
- createdAt
Component variants
Medium
Upper Body Challenge
#70
Small
workouts/70 Related
References
curl -sS \
"https://example-data.com/api/v1/workouts/70" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/workouts/70"
);
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/70"
);
const workout = (await res.json()) as Workout;import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/70"
)
workout = res.json() {
"id": 70,
"userId": 27,
"kind": "sports",
"name": "Upper Body Challenge",
"durationMinutes": 19,
"caloriesBurned": 193,
"intensity": "high",
"notes": "Tough session but pushed through",
"performedAt": "2025-06-27T22:56:29.874Z",
"createdAt": "2025-06-27T23:19:29.336Z"
}