Lower Body Workout
- userId
-
Kevon Dickinson @kevon.dickinson
- kind
- strength
- name
- Lower Body Workout
- durationMinutes
- 36
- caloriesBurned
- 332
- intensity
- high
- notes
- Great pump
- performedAt
- createdAt
Overview
workouts / #532
Lower Body Workout
#532
Request
curl example
curl -sS \ "https://example-data.com/api/v1/workouts/532" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/workouts/532" ); 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/532"
);
const workout = (await res.json()) as Workout; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/532"
)
workout = res.json() Response
{
"id": 532,
"userId": 218,
"kind": "strength",
"name": "Lower Body Workout",
"durationMinutes": 36,
"caloriesBurned": 332,
"intensity": "high",
"notes": "Great pump",
"performedAt": "2026-04-21T07:57:40.746Z",
"createdAt": "2026-04-21T08:51:46.613Z"
}