Lower Body Session
- userId
-
Leora Doyle @leora_doyle
- kind
- flexibility
- name
- Lower Body Session
- durationMinutes
- 63
- caloriesBurned
- 637
- intensity
- high
- notes
- Great pump
- performedAt
- createdAt
Overview
workouts / #288
Lower Body Session
#288
Request
curl example
curl -sS \ "https://example-data.com/api/v1/workouts/288" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/workouts/288" ); 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/288"
);
const workout = (await res.json()) as Workout; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/288"
)
workout = res.json() Response
{
"id": 288,
"userId": 117,
"kind": "flexibility",
"name": "Lower Body Session",
"durationMinutes": 63,
"caloriesBurned": 637,
"intensity": "high",
"notes": "Great pump",
"performedAt": "2025-06-10T02:53:03.900Z",
"createdAt": "2025-06-10T03:35:35.785Z"
}