Core Training
- userId
-
Vidal Parker @vidal_parker12
- kind
- strength
- name
- Core Training
- durationMinutes
- 76
- caloriesBurned
- 1087
- intensity
- very_high
- notes
- Cardio felt easy
- performedAt
- createdAt
Overview
workouts / #498
Core Training
#498
Request
curl example
curl -sS \ "https://example-data.com/api/v1/workouts/498" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/workouts/498" ); 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/498"
);
const workout = (await res.json()) as Workout; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/498"
)
workout = res.json() Response
{
"id": 498,
"userId": 203,
"kind": "strength",
"name": "Core Training",
"durationMinutes": 76,
"caloriesBurned": 1087,
"intensity": "very_high",
"notes": "Cardio felt easy",
"performedAt": "2025-06-05T13:21:38.927Z",
"createdAt": "2025-06-05T13:38:31.876Z"
}