workouts / #170
- userId
-
Jewell Olson @jewell_olson2
- kind
- mixed
- name
- Intense Training
- durationMinutes
- 81
- caloriesBurned
- 559
- intensity
- medium
- notes
- Cardio felt easy
- performedAt
- createdAt
Component variants
Medium
Intense Training
#170
Small
workouts/170 Related
References
curl -sS \
"https://example-data.com/api/v1/workouts/170" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/workouts/170"
);
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/170"
);
const workout = (await res.json()) as Workout;import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/170"
)
workout = res.json() {
"id": 170,
"userId": 68,
"kind": "mixed",
"name": "Intense Training",
"durationMinutes": 81,
"caloriesBurned": 559,
"intensity": "medium",
"notes": "Cardio felt easy",
"performedAt": "2026-02-20T15:08:14.933Z",
"createdAt": "2026-02-20T15:40:37.137Z"
}