Lower Body Workout
- userId
-
Lacy Gusikowski @lacy.gusikowski
- kind
- sports
- name
- Lower Body Workout
- durationMinutes
- 43
- caloriesBurned
- 419
- intensity
- high
- notes
- Personal best on squats
- performedAt
- createdAt
Overview
workouts / #113
Lower Body Workout
#113
Request
curl example
curl -sS \ "https://example-data.com/api/v1/workouts/113" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/workouts/113" ); 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/113"
);
const workout = (await res.json()) as Workout; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/113"
)
workout = res.json() Response
{
"id": 113,
"userId": 47,
"kind": "sports",
"name": "Lower Body Workout",
"durationMinutes": 43,
"caloriesBurned": 419,
"intensity": "high",
"notes": "Personal best on squats",
"performedAt": "2025-10-10T20:03:32.895Z",
"createdAt": "2025-10-10T20:53:11.564Z"
}