Intense Blast
- userId
-
Roberta Mueller-Yundt @roberta_mueller-yundt
- kind
- strength
- name
- Intense Blast
- durationMinutes
- 58
- caloriesBurned
- 430
- intensity
- high
- notes
- performedAt
- createdAt
Overview
workouts / #403
Intense Blast
#403
Request
curl example
curl -sS \ "https://example-data.com/api/v1/workouts/403" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/workouts/403" ); 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/403"
);
const workout = (await res.json()) as Workout; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/403"
)
workout = res.json() Response
{
"id": 403,
"userId": 162,
"kind": "strength",
"name": "Intense Blast",
"durationMinutes": 58,
"caloriesBurned": 430,
"intensity": "high",
"notes": "",
"performedAt": "2026-01-05T22:05:13.600Z",
"createdAt": "2026-01-05T23:01:01.193Z"
}