Core Blast
- userId
-
Tabitha Ruecker @tabitha.ruecker
- kind
- mixed
- name
- Core Blast
- durationMinutes
- 30
- caloriesBurned
- 242
- intensity
- high
- notes
- Focused on form today
- performedAt
- createdAt
Overview
workouts / #482
Core Blast
#482
Request
curl example
curl -sS \ "https://example-data.com/api/v1/workouts/482" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/workouts/482" ); 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/482"
);
const workout = (await res.json()) as Workout; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/482"
)
workout = res.json() Response
{
"id": 482,
"userId": 197,
"kind": "mixed",
"name": "Core Blast",
"durationMinutes": 30,
"caloriesBurned": 242,
"intensity": "high",
"notes": "Focused on form today",
"performedAt": "2026-05-13T03:01:37.577Z",
"createdAt": "2026-05-13T03:16:46.643Z"
}