Power Routine
- userId
-
Ethyl Auer @ethyl_auer89
- kind
- strength
- name
- Power Routine
- durationMinutes
- 29
- caloriesBurned
- 291
- intensity
- high
- notes
- Did extra sets
- performedAt
- createdAt
Overview
workouts / #234
Power Routine
#234
Request
curl example
curl -sS \ "https://example-data.com/api/v1/workouts/234" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/workouts/234" ); 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/234"
);
const workout = (await res.json()) as Workout; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/234"
)
workout = res.json() Response
{
"id": 234,
"userId": 95,
"kind": "strength",
"name": "Power Routine",
"durationMinutes": 29,
"caloriesBurned": 291,
"intensity": "high",
"notes": "Did extra sets",
"performedAt": "2025-08-20T06:59:36.726Z",
"createdAt": "2025-08-20T07:46:58.061Z"
}