Core Routine
- userId
-
Mable West @mable_west
- kind
- mixed
- name
- Core Routine
- durationMinutes
- 59
- caloriesBurned
- 531
- intensity
- high
- notes
- Ran out of time
- performedAt
- createdAt
Overview
workouts / #212
Core Routine
#212
Request
curl example
curl -sS \ "https://example-data.com/api/v1/workouts/212" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/workouts/212" ); 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/212"
);
const workout = (await res.json()) as Workout; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/212"
)
workout = res.json() Response
{
"id": 212,
"userId": 86,
"kind": "mixed",
"name": "Core Routine",
"durationMinutes": 59,
"caloriesBurned": 531,
"intensity": "high",
"notes": "Ran out of time",
"performedAt": "2025-11-18T11:03:39.865Z",
"createdAt": "2025-11-18T11:22:15.537Z"
}