Upper Body Training
- userId
-
Adan Weber @adan.weber61
- kind
- cardio
- name
- Upper Body Training
- durationMinutes
- 42
- caloriesBurned
- 442
- intensity
- high
- notes
- performedAt
- createdAt
Overview
workouts / #391
Upper Body Training
#391
Request
curl example
curl -sS \ "https://example-data.com/api/v1/workouts/391" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/workouts/391" ); 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/391"
);
const workout = (await res.json()) as Workout; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/391"
)
workout = res.json() Response
{
"id": 391,
"userId": 155,
"kind": "cardio",
"name": "Upper Body Training",
"durationMinutes": 42,
"caloriesBurned": 442,
"intensity": "high",
"notes": "",
"performedAt": "2025-12-08T06:50:10.355Z",
"createdAt": "2025-12-08T07:16:24.035Z"
}