Evening Blast
- userId
-
Theresia Collins @theresia_collins86
- kind
- strength
- name
- Evening Blast
- durationMinutes
- 89
- caloriesBurned
- 805
- intensity
- high
- notes
- Tough session but pushed through
- performedAt
- createdAt
Overview
workouts / #160
Evening Blast
#160
Request
curl example
curl -sS \ "https://example-data.com/api/v1/workouts/160" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/workouts/160" ); 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/160"
);
const workout = (await res.json()) as Workout; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/160"
)
workout = res.json() Response
{
"id": 160,
"userId": 63,
"kind": "strength",
"name": "Evening Blast",
"durationMinutes": 89,
"caloriesBurned": 805,
"intensity": "high",
"notes": "Tough session but pushed through",
"performedAt": "2026-02-07T14:17:22.412Z",
"createdAt": "2026-02-07T15:09:25.871Z"
}