Full Routine
- userId
-
Webster Skiles @webster_skiles39
- kind
- strength
- name
- Full Routine
- durationMinutes
- 65
- caloriesBurned
- 540
- intensity
- high
- notes
- Personal best on squats
- performedAt
- createdAt
Overview
workouts / #15
Full Routine
#15
Request
curl example
curl -sS \ "https://example-data.com/api/v1/workouts/15" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/workouts/15" ); 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/15"
);
const workout = (await res.json()) as Workout; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/15"
)
workout = res.json() Response
{
"id": 15,
"userId": 5,
"kind": "strength",
"name": "Full Routine",
"durationMinutes": 65,
"caloriesBurned": 540,
"intensity": "high",
"notes": "Personal best on squats",
"performedAt": "2025-09-18T07:59:42.507Z",
"createdAt": "2025-09-18T08:45:44.531Z"
}