Full Session
- userId
-
Cassidy Christiansen @cassidy_christiansen38
- kind
- strength
- name
- Full Session
- durationMinutes
- 22
- caloriesBurned
- 185
- intensity
- high
- notes
- Great pump
- performedAt
- createdAt
Overview
workouts / #84
Full Session
#84
Request
curl example
curl -sS \ "https://example-data.com/api/v1/workouts/84" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/workouts/84" ); 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/84"
);
const workout = (await res.json()) as Workout; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/84"
)
workout = res.json() Response
{
"id": 84,
"userId": 33,
"kind": "strength",
"name": "Full Session",
"durationMinutes": 22,
"caloriesBurned": 185,
"intensity": "high",
"notes": "Great pump",
"performedAt": "2025-09-28T10:02:11.015Z",
"createdAt": "2025-09-28T10:28:52.522Z"
}