HIIT Session
- userId
-
Ken Towne @ken.towne
- kind
- strength
- name
- HIIT Session
- durationMinutes
- 66
- caloriesBurned
- 267
- intensity
- low
- notes
- Cardio felt easy
- performedAt
- createdAt
Overview
workouts / #610
HIIT Session
#610
Request
curl example
curl -sS \ "https://example-data.com/api/v1/workouts/610" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/workouts/610" ); 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/610"
);
const workout = (await res.json()) as Workout; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/610"
)
workout = res.json() Response
{
"id": 610,
"userId": 248,
"kind": "strength",
"name": "HIIT Session",
"durationMinutes": 66,
"caloriesBurned": 267,
"intensity": "low",
"notes": "Cardio felt easy",
"performedAt": "2026-02-21T08:14:03.423Z",
"createdAt": "2026-02-21T08:24:17.436Z"
}