Recovery Training
- userId
-
Alexa Rippin @alexa_rippin25
- kind
- flexibility
- name
- Recovery Training
- durationMinutes
- 22
- caloriesBurned
- 305
- intensity
- very_high
- notes
- Cardio felt easy
- performedAt
- createdAt
Overview
workouts / #579
Recovery Training
#579
Request
curl example
curl -sS \ "https://example-data.com/api/v1/workouts/579" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/workouts/579" ); 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/579"
);
const workout = (await res.json()) as Workout; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/579"
)
workout = res.json() Response
{
"id": 579,
"userId": 235,
"kind": "flexibility",
"name": "Recovery Training",
"durationMinutes": 22,
"caloriesBurned": 305,
"intensity": "very_high",
"notes": "Cardio felt easy",
"performedAt": "2026-03-21T10:02:16.275Z",
"createdAt": "2026-03-21T10:11:58.286Z"
}