Intense Training
- userId
-
Joseph Steuber @joseph_steuber
- kind
- strength
- name
- Intense Training
- durationMinutes
- 78
- caloriesBurned
- 618
- intensity
- high
- notes
- Did extra sets
- performedAt
- createdAt
Overview
workouts / #544
Intense Training
#544
Request
curl example
curl -sS \ "https://example-data.com/api/v1/workouts/544" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/workouts/544" ); 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/544"
);
const workout = (await res.json()) as Workout; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/544"
)
workout = res.json() Response
{
"id": 544,
"userId": 221,
"kind": "strength",
"name": "Intense Training",
"durationMinutes": 78,
"caloriesBurned": 618,
"intensity": "high",
"notes": "Did extra sets",
"performedAt": "2026-04-07T04:23:11.641Z",
"createdAt": "2026-04-07T04:28:08.046Z"
}