Recovery Workout
- userId
-
Kathleen Lynch @kathleen_lynch1
- kind
- strength
- name
- Recovery Workout
- durationMinutes
- 55
- caloriesBurned
- 739
- intensity
- very_high
- notes
- performedAt
- createdAt
Overview
workouts / #344
Recovery Workout
#344
Request
curl example
curl -sS \ "https://example-data.com/api/v1/workouts/344" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/workouts/344" ); 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/344"
);
const workout = (await res.json()) as Workout; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/344"
)
workout = res.json() Response
{
"id": 344,
"userId": 139,
"kind": "strength",
"name": "Recovery Workout",
"durationMinutes": 55,
"caloriesBurned": 739,
"intensity": "very_high",
"notes": "",
"performedAt": "2025-11-29T14:40:17.500Z",
"createdAt": "2025-11-29T14:57:32.196Z"
}