workouts
workouts
Page 7 of 26.
Overview
-
Morning Challenge
#145
-
Quick Circuit
#146
-
Evening Blast
#147
-
Recovery Workout
#148
-
Lower Body Routine
#149
-
Evening Routine
#150
-
Recovery Training
#151
-
Weekend Session
#152
-
Core Burn
#153
-
Full Workout
#154
-
Easy Workout
#155
-
Easy Blast
#156
-
Quick Routine
#157
-
Quick Training
#158
-
Quick Session
#159
-
Evening Blast
#160
-
Weekend Circuit
#161
-
Power Circuit
#162
-
Recovery Training
#163
-
Recovery Burn
#164
-
Quick Session
#165
-
Quick Blast
#166
-
Evening Challenge
#167
-
Quick Routine
#168
Request
curl example
curl -sS \ "https://example-data.com/api/v1/workouts?limit=25"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/workouts?limit=25"
);
const { data, meta } = 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, ListEnvelope } from "./types/workouts";
const res = await fetch(
"https://example-data.com/api/v1/workouts?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Workout>; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/workouts",
params={"limit": 25},
)
data = res.json() Response
{
"data": [
{
"id": 145,
"userId": 58,
"kind": "cardio",
"name": "Morning Challenge",
"durationMinutes": 20,
"caloriesBurned": 189,
"intensity": "high",
"notes": "Cardio felt easy",
"performedAt": "2026-04-10T21:16:57.676Z",
"createdAt": "2026-04-10T22:07:47.136Z"
},
{
"id": 146,
"userId": 59,
"kind": "flexibility",
"name": "Quick Circuit",
"durationMinutes": 56,
"caloriesBurned": 250,
"intensity": "low",
"notes": "Ran out of time",
"performedAt": "2025-06-18T21:16:48.690Z",
"createdAt": "2025-06-18T21:53:55.380Z"
},
{
"id": 147,
"userId": 59,
"kind": "cardio",
"name": "Evening Blast",
"durationMinutes": 16,
"caloriesBurned": 150,
"intensity": "high",
"notes": "Great pump",
"performedAt": "2025-10-24T02:18:44.907Z",
"createdAt": "2025-10-24T03:18:43.679Z"
}
],
"meta": {
"page": 7,
"limit": 24,
"total": 620,
"totalPages": 26
},
"links": {
"self": "/api/v1/workouts?page=7&limit=24",
"first": "/api/v1/workouts?page=1&limit=24",
"last": "/api/v1/workouts?page=26&limit=24",
"next": "/api/v1/workouts?page=8&limit=24",
"prev": "/api/v1/workouts?page=6&limit=24"
}
}