Recovery Training
- userId
-
Jarrell Flatley @jarrell_flatley39
- kind
- flexibility
- name
- Recovery Training
- durationMinutes
- 42
- caloriesBurned
- 193
- intensity
- low
- notes
- Needed more rest between sets
- performedAt
- createdAt
Overview
workouts / #151
Recovery Training
#151
Request
curl example
curl -sS \ "https://example-data.com/api/v1/workouts/151" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/workouts/151" ); 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/151"
);
const workout = (await res.json()) as Workout; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/151"
)
workout = res.json() Response
{
"id": 151,
"userId": 61,
"kind": "flexibility",
"name": "Recovery Training",
"durationMinutes": 42,
"caloriesBurned": 193,
"intensity": "low",
"notes": "Needed more rest between sets",
"performedAt": "2025-07-02T19:20:53.231Z",
"createdAt": "2025-07-02T19:34:32.863Z"
}