Morning Burn
- userId
-
Alvena Emmerich @alvena_emmerich52
- kind
- strength
- name
- Morning Burn
- durationMinutes
- 24
- caloriesBurned
- 212
- intensity
- high
- notes
- Felt strong today
- performedAt
- createdAt
Overview
workouts / #23
Morning Burn
#23
Request
curl example
curl -sS \ "https://example-data.com/api/v1/workouts/23" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/workouts/23" ); 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/23"
);
const workout = (await res.json()) as Workout; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/23"
)
workout = res.json() Response
{
"id": 23,
"userId": 8,
"kind": "strength",
"name": "Morning Burn",
"durationMinutes": 24,
"caloriesBurned": 212,
"intensity": "high",
"notes": "Felt strong today",
"performedAt": "2025-10-14T20:13:02.566Z",
"createdAt": "2025-10-14T20:29:16.587Z"
}