Evening Burn
- userId
-
Vida Kunde-Koepp @vida_kunde-koepp95
- kind
- strength
- name
- Evening Burn
- durationMinutes
- 28
- caloriesBurned
- 208
- intensity
- high
- notes
- Needed more rest between sets
- performedAt
- createdAt
Overview
workouts / #270
Evening Burn
#270
Request
curl example
curl -sS \ "https://example-data.com/api/v1/workouts/270" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/workouts/270" ); 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/270"
);
const workout = (await res.json()) as Workout; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/270"
)
workout = res.json() Response
{
"id": 270,
"userId": 109,
"kind": "strength",
"name": "Evening Burn",
"durationMinutes": 28,
"caloriesBurned": 208,
"intensity": "high",
"notes": "Needed more rest between sets",
"performedAt": "2025-07-07T09:21:17.630Z",
"createdAt": "2025-07-07T09:46:59.338Z"
}