workouts / #51
- userId
-
Melba Collier @melba.collier
- kind
- strength
- name
- Evening Challenge
- durationMinutes
- 82
- caloriesBurned
- 640
- intensity
- high
- notes
- Did extra sets
- performedAt
- createdAt
Component variants
Medium
Evening Challenge
#51
Small
workouts/51 Related
References
curl -sS \
"https://example-data.com/api/v1/workouts/51" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/workouts/51"
);
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/51"
);
const workout = (await res.json()) as Workout;import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/51"
)
workout = res.json() {
"id": 51,
"userId": 19,
"kind": "strength",
"name": "Evening Challenge",
"durationMinutes": 82,
"caloriesBurned": 640,
"intensity": "high",
"notes": "Did extra sets",
"performedAt": "2026-02-12T23:08:18.989Z",
"createdAt": "2026-02-13T00:04:12.866Z"
}