workouts / #80
- userId
-
Kariane Schmitt @kariane.schmitt97
- kind
- cardio
- name
- Morning Challenge
- durationMinutes
- 21
- caloriesBurned
- 170
- intensity
- high
- notes
- Should have gone heavier
- performedAt
- createdAt
Component variants
Medium
Morning Challenge
#80
Small
workouts/80 Related
References
curl -sS \
"https://example-data.com/api/v1/workouts/80" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/workouts/80"
);
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/80"
);
const workout = (await res.json()) as Workout;import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/80"
)
workout = res.json() {
"id": 80,
"userId": 32,
"kind": "cardio",
"name": "Morning Challenge",
"durationMinutes": 21,
"caloriesBurned": 170,
"intensity": "high",
"notes": "Should have gone heavier",
"performedAt": "2026-01-19T17:44:16.050Z",
"createdAt": "2026-01-19T17:45:39.160Z"
}