Evening Challenge
- userId
-
Rubye Emmerich @rubye.emmerich
- kind
- flexibility
- name
- Evening Challenge
- durationMinutes
- 86
- caloriesBurned
- 584
- intensity
- medium
- notes
- Cardio felt easy
- performedAt
- createdAt
Overview
workouts / #552
Evening Challenge
#552
Request
curl example
curl -sS \ "https://example-data.com/api/v1/workouts/552" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/workouts/552" ); 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/552"
);
const workout = (await res.json()) as Workout; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/552"
)
workout = res.json() Response
{
"id": 552,
"userId": 225,
"kind": "flexibility",
"name": "Evening Challenge",
"durationMinutes": 86,
"caloriesBurned": 584,
"intensity": "medium",
"notes": "Cardio felt easy",
"performedAt": "2025-07-01T02:25:23.726Z",
"createdAt": "2025-07-01T03:05:49.163Z"
}