workouts
workouts
Page 16 of 26.
Overview
-
Endurance Routine
#361
-
Lower Body Circuit
#362
-
Weekend Burn
#363
-
Core Session
#364
-
Recovery Challenge
#365
-
Easy Blast
#366
-
Upper Body Challenge
#367
-
Easy Routine
#368
-
Power Routine
#369
-
Quick Blast
#370
-
Core Training
#371
-
Upper Body Challenge
#372
-
Intense Challenge
#373
-
Upper Body Routine
#374
-
Power Challenge
#375
-
Power Workout
#376
-
Recovery Session
#377
-
Upper Body Session
#378
-
Lower Body Routine
#379
-
Quick Circuit
#380
-
HIIT Workout
#381
-
Power Challenge
#382
-
Power Circuit
#383
-
Quick Session
#384
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": 361,
"userId": 146,
"kind": "cardio",
"name": "Endurance Routine",
"durationMinutes": 43,
"caloriesBurned": 559,
"intensity": "very_high",
"notes": "Great pump",
"performedAt": "2026-05-05T23:58:57.706Z",
"createdAt": "2026-05-06T00:14:30.312Z"
},
{
"id": 362,
"userId": 146,
"kind": "flexibility",
"name": "Lower Body Circuit",
"durationMinutes": 31,
"caloriesBurned": 116,
"intensity": "low",
"notes": "Ran out of time",
"performedAt": "2025-12-29T22:01:57.686Z",
"createdAt": "2025-12-29T22:19:39.898Z"
},
{
"id": 363,
"userId": 146,
"kind": "flexibility",
"name": "Weekend Burn",
"durationMinutes": 16,
"caloriesBurned": 177,
"intensity": "very_high",
"notes": "Did extra sets",
"performedAt": "2026-02-01T21:03:35.213Z",
"createdAt": "2026-02-01T21:16:38.123Z"
}
],
"meta": {
"page": 16,
"limit": 24,
"total": 620,
"totalPages": 26
},
"links": {
"self": "/api/v1/workouts?page=16&limit=24",
"first": "/api/v1/workouts?page=1&limit=24",
"last": "/api/v1/workouts?page=26&limit=24",
"next": "/api/v1/workouts?page=17&limit=24",
"prev": "/api/v1/workouts?page=15&limit=24"
}
}