Lower Body Blast
- userId
-
Brycen Bayer @brycen_bayer60
- kind
- strength
- name
- Lower Body Blast
- durationMinutes
- 74
- caloriesBurned
- 549
- intensity
- high
- notes
- performedAt
- createdAt
Overview
workouts / #17
Lower Body Blast
#17
Request
curl example
curl -sS \ "https://example-data.com/api/v1/workouts/17" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/workouts/17" ); 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/17"
);
const workout = (await res.json()) as Workout; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/17"
)
workout = res.json() Response
{
"id": 17,
"userId": 6,
"kind": "strength",
"name": "Lower Body Blast",
"durationMinutes": 74,
"caloriesBurned": 549,
"intensity": "high",
"notes": "",
"performedAt": "2025-08-07T01:31:42.423Z",
"createdAt": "2025-08-07T01:58:42.941Z"
}