Quick Routine
- userId
-
Michale Hilpert @michale_hilpert62
- kind
- strength
- name
- Quick Routine
- durationMinutes
- 40
- caloriesBurned
- 170
- intensity
- low
- notes
- Felt strong today
- performedAt
- createdAt
Overview
workouts / #620
Quick Routine
#620
Request
curl example
curl -sS \ "https://example-data.com/api/v1/workouts/620" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/workouts/620" ); 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/620"
);
const workout = (await res.json()) as Workout; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/620"
)
workout = res.json() Response
{
"id": 620,
"userId": 250,
"kind": "strength",
"name": "Quick Routine",
"durationMinutes": 40,
"caloriesBurned": 170,
"intensity": "low",
"notes": "Felt strong today",
"performedAt": "2026-04-05T23:16:23.087Z",
"createdAt": "2026-04-05T23:20:49.691Z"
}