Upper Body Challenge
- userId
-
Jennifer Hoeger @jennifer.hoeger
- kind
- sports
- name
- Upper Body Challenge
- durationMinutes
- 65
- caloriesBurned
- 921
- intensity
- very_high
- notes
- Focused on form today
- performedAt
- createdAt
Overview
workouts / #292
Upper Body Challenge
#292
Request
curl example
curl -sS \ "https://example-data.com/api/v1/workouts/292" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/workouts/292" ); 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/292"
);
const workout = (await res.json()) as Workout; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/292"
)
workout = res.json() Response
{
"id": 292,
"userId": 119,
"kind": "sports",
"name": "Upper Body Challenge",
"durationMinutes": 65,
"caloriesBurned": 921,
"intensity": "very_high",
"notes": "Focused on form today",
"performedAt": "2026-02-15T06:21:55.751Z",
"createdAt": "2026-02-15T07:16:18.424Z"
}