workouts
workouts
Page 25 of 26.
Overview
-
Lower Body Training
#577
-
Full Burn
#578
-
Recovery Training
#579
-
Power Blast
#580
-
Weekend Circuit
#581
-
Intense Challenge
#582
-
Core Circuit
#583
-
Morning Training
#584
-
Endurance Session
#585
-
Core Workout
#586
-
Power Burn
#587
-
HIIT Burn
#588
-
Full Session
#589
-
Morning Burn
#590
-
Intense Burn
#591
-
HIIT Blast
#592
-
Morning Challenge
#593
-
Easy Routine
#594
-
Power Circuit
#595
-
Quick Training
#596
-
Upper Body Training
#597
-
Full Challenge
#598
-
Power Burn
#599
-
Weekend Circuit
#600
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": 577,
"userId": 235,
"kind": "mixed",
"name": "Lower Body Training",
"durationMinutes": 21,
"caloriesBurned": 147,
"intensity": "medium",
"notes": "Should have gone heavier",
"performedAt": "2026-04-19T21:23:12.883Z",
"createdAt": "2026-04-19T22:13:15.071Z"
},
{
"id": 578,
"userId": 235,
"kind": "strength",
"name": "Full Burn",
"durationMinutes": 36,
"caloriesBurned": 121,
"intensity": "low",
"notes": "",
"performedAt": "2025-12-28T14:52:35.707Z",
"createdAt": "2025-12-28T15:26:44.409Z"
},
{
"id": 579,
"userId": 235,
"kind": "flexibility",
"name": "Recovery Training",
"durationMinutes": 22,
"caloriesBurned": 305,
"intensity": "very_high",
"notes": "Cardio felt easy",
"performedAt": "2026-03-21T10:02:16.275Z",
"createdAt": "2026-03-21T10:11:58.286Z"
}
],
"meta": {
"page": 25,
"limit": 24,
"total": 620,
"totalPages": 26
},
"links": {
"self": "/api/v1/workouts?page=25&limit=24",
"first": "/api/v1/workouts?page=1&limit=24",
"last": "/api/v1/workouts?page=26&limit=24",
"next": "/api/v1/workouts?page=26&limit=24",
"prev": "/api/v1/workouts?page=24&limit=24"
}
}