HIIT Burn
- userId
-
Matt Kuhic @matt_kuhic57
- kind
- strength
- name
- HIIT Burn
- durationMinutes
- 39
- caloriesBurned
- 426
- intensity
- very_high
- notes
- Tough session but pushed through
- performedAt
- createdAt
Overview
workouts / #555
HIIT Burn
#555
Request
curl example
curl -sS \ "https://example-data.com/api/v1/workouts/555" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/workouts/555" ); 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/555"
);
const workout = (await res.json()) as Workout; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/555"
)
workout = res.json() Response
{
"id": 555,
"userId": 226,
"kind": "strength",
"name": "HIIT Burn",
"durationMinutes": 39,
"caloriesBurned": 426,
"intensity": "very_high",
"notes": "Tough session but pushed through",
"performedAt": "2025-09-28T10:14:01.156Z",
"createdAt": "2025-09-28T10:46:52.847Z"
}