workouts
workouts
Page 18 of 26.
Overview
-
HIIT Training
#409
-
Evening Circuit
#410
-
HIIT Training
#411
-
Morning Circuit
#412
-
Full Session
#413
-
HIIT Circuit
#414
-
Recovery Routine
#415
-
Easy Challenge
#416
-
Upper Body Workout
#417
-
Quick Circuit
#418
-
Endurance Training
#419
-
Weekend Training
#420
-
Easy Training
#421
-
Upper Body Training
#422
-
Morning Challenge
#423
-
Power Routine
#424
-
Power Challenge
#425
-
Easy Burn
#426
-
Intense Challenge
#427
-
Power Burn
#428
-
Weekend Circuit
#429
-
Evening Training
#430
-
HIIT Training
#431
-
Intense Challenge
#432
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": 409,
"userId": 164,
"kind": "sports",
"name": "HIIT Training",
"durationMinutes": 34,
"caloriesBurned": 362,
"intensity": "very_high",
"notes": "Focused on form today",
"performedAt": "2025-12-19T22:57:43.558Z",
"createdAt": "2025-12-19T23:01:21.666Z"
},
{
"id": 410,
"userId": 164,
"kind": "mixed",
"name": "Evening Circuit",
"durationMinutes": 76,
"caloriesBurned": 267,
"intensity": "low",
"notes": "Tough session but pushed through",
"performedAt": "2026-01-20T19:52:45.809Z",
"createdAt": "2026-01-20T20:09:06.473Z"
},
{
"id": 411,
"userId": 165,
"kind": "flexibility",
"name": "HIIT Training",
"durationMinutes": 54,
"caloriesBurned": 235,
"intensity": "low",
"notes": "Needed more rest between sets",
"performedAt": "2026-01-18T05:22:18.384Z",
"createdAt": "2026-01-18T05:43:48.565Z"
}
],
"meta": {
"page": 18,
"limit": 24,
"total": 620,
"totalPages": 26
},
"links": {
"self": "/api/v1/workouts?page=18&limit=24",
"first": "/api/v1/workouts?page=1&limit=24",
"last": "/api/v1/workouts?page=26&limit=24",
"next": "/api/v1/workouts?page=19&limit=24",
"prev": "/api/v1/workouts?page=17&limit=24"
}
}