workouts
workouts
Page 19 of 26.
Overview
-
Quick Routine
#433
-
Quick Circuit
#434
-
Full Challenge
#435
-
Recovery Blast
#436
-
Quick Burn
#437
-
Quick Burn
#438
-
HIIT Burn
#439
-
HIIT Session
#440
-
Power Blast
#441
-
Weekend Routine
#442
-
Intense Challenge
#443
-
Intense Circuit
#444
-
Weekend Training
#445
-
Power Burn
#446
-
Easy Challenge
#447
-
Lower Body Blast
#448
-
Quick Routine
#449
-
Power Training
#450
-
Recovery Routine
#451
-
Upper Body Training
#452
-
Morning Workout
#453
-
Lower Body Circuit
#454
-
Intense Circuit
#455
-
HIIT Routine
#456
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": 433,
"userId": 176,
"kind": "flexibility",
"name": "Quick Routine",
"durationMinutes": 15,
"caloriesBurned": 104,
"intensity": "medium",
"notes": "Felt strong today",
"performedAt": "2026-03-29T21:31:25.079Z",
"createdAt": "2026-03-29T21:40:42.988Z"
},
{
"id": 434,
"userId": 176,
"kind": "mixed",
"name": "Quick Circuit",
"durationMinutes": 21,
"caloriesBurned": 153,
"intensity": "high",
"notes": "",
"performedAt": "2025-07-31T02:35:57.526Z",
"createdAt": "2025-07-31T03:26:45.408Z"
},
{
"id": 435,
"userId": 177,
"kind": "cardio",
"name": "Full Challenge",
"durationMinutes": 64,
"caloriesBurned": 608,
"intensity": "high",
"notes": "",
"performedAt": "2025-09-05T09:01:23.456Z",
"createdAt": "2025-09-05T09:21:46.504Z"
}
],
"meta": {
"page": 19,
"limit": 24,
"total": 620,
"totalPages": 26
},
"links": {
"self": "/api/v1/workouts?page=19&limit=24",
"first": "/api/v1/workouts?page=1&limit=24",
"last": "/api/v1/workouts?page=26&limit=24",
"next": "/api/v1/workouts?page=20&limit=24",
"prev": "/api/v1/workouts?page=18&limit=24"
}
}