Core Circuit
- userId
-
Britney Haag @britney.haag
- kind
- flexibility
- name
- Core Circuit
- durationMinutes
- 34
- caloriesBurned
- 138
- intensity
- low
- notes
- Personal best on squats
- performedAt
- createdAt
Overview
workouts / #326
Core Circuit
#326
Request
curl example
curl -sS \ "https://example-data.com/api/v1/workouts/326" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/workouts/326" ); 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/326"
);
const workout = (await res.json()) as Workout; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/326"
)
workout = res.json() Response
{
"id": 326,
"userId": 133,
"kind": "flexibility",
"name": "Core Circuit",
"durationMinutes": 34,
"caloriesBurned": 138,
"intensity": "low",
"notes": "Personal best on squats",
"performedAt": "2025-08-18T21:31:03.815Z",
"createdAt": "2025-08-18T21:40:33.225Z"
}