Morning Challenge
- userId
-
Guy Christiansen @guy.christiansen40
- kind
- flexibility
- name
- Morning Challenge
- durationMinutes
- 90
- caloriesBurned
- 888
- intensity
- very_high
- notes
- Cardio felt easy
- performedAt
- createdAt
Overview
workouts / #53
Morning Challenge
#53
Request
curl example
curl -sS \ "https://example-data.com/api/v1/workouts/53" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/workouts/53" ); const workout = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/workouts.d.ts https://example-data.com/types/workouts.d.ts
import type { Workout } from "./types/workouts";
const res = await fetch(
"https://example-data.com/api/v1/workouts/53"
);
const workout = (await res.json()) as Workout; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/53"
)
workout = res.json() Response
{
"id": 53,
"userId": 21,
"kind": "flexibility",
"name": "Morning Challenge",
"durationMinutes": 90,
"caloriesBurned": 888,
"intensity": "very_high",
"notes": "Cardio felt easy",
"performedAt": "2026-02-24T18:23:38.568Z",
"createdAt": "2026-02-24T18:51:52.895Z"
}