Lower Body Circuit
- userId
-
Matilde Beahan @matilde_beahan
- kind
- cardio
- name
- Lower Body Circuit
- durationMinutes
- 27
- caloriesBurned
- 327
- intensity
- very_high
- notes
- Felt strong today
- performedAt
- createdAt
Overview
workouts / #238
Lower Body Circuit
#238
Request
curl example
curl -sS \ "https://example-data.com/api/v1/workouts/238" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/workouts/238" ); 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/238"
);
const workout = (await res.json()) as Workout; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/238"
)
workout = res.json() Response
{
"id": 238,
"userId": 96,
"kind": "cardio",
"name": "Lower Body Circuit",
"durationMinutes": 27,
"caloriesBurned": 327,
"intensity": "very_high",
"notes": "Felt strong today",
"performedAt": "2026-05-18T09:05:02.665Z",
"createdAt": "2026-05-18T09:38:25.120Z"
}