workouts
workouts
Page 17 of 26.
Overview
-
Recovery Workout
#385
-
Lower Body Training
#386
-
Evening Session
#387
-
Recovery Session
#388
-
Power Workout
#389
-
Morning Session
#390
-
Upper Body Training
#391
-
Intense Challenge
#392
-
HIIT Circuit
#393
-
Recovery Challenge
#394
-
Power Routine
#395
-
Lower Body Blast
#396
-
Recovery Workout
#397
-
Core Burn
#398
-
Recovery Routine
#399
-
Easy Training
#400
-
Endurance Burn
#401
-
Easy Routine
#402
-
Intense Blast
#403
-
Weekend Blast
#404
-
Core Burn
#405
-
Core Challenge
#406
-
Morning Routine
#407
-
Weekend Session
#408
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": 385,
"userId": 153,
"kind": "cardio",
"name": "Recovery Workout",
"durationMinutes": 88,
"caloriesBurned": 956,
"intensity": "very_high",
"notes": "",
"performedAt": "2026-01-08T03:51:07.599Z",
"createdAt": "2026-01-08T04:31:21.596Z"
},
{
"id": 386,
"userId": 154,
"kind": "sports",
"name": "Lower Body Training",
"durationMinutes": 50,
"caloriesBurned": 213,
"intensity": "low",
"notes": "Felt strong today",
"performedAt": "2025-10-26T07:56:19.610Z",
"createdAt": "2025-10-26T08:51:54.257Z"
},
{
"id": 387,
"userId": 154,
"kind": "flexibility",
"name": "Evening Session",
"durationMinutes": 69,
"caloriesBurned": 237,
"intensity": "low",
"notes": "Ran out of time",
"performedAt": "2026-03-27T10:34:46.705Z",
"createdAt": "2026-03-27T10:46:02.151Z"
}
],
"meta": {
"page": 17,
"limit": 24,
"total": 620,
"totalPages": 26
},
"links": {
"self": "/api/v1/workouts?page=17&limit=24",
"first": "/api/v1/workouts?page=1&limit=24",
"last": "/api/v1/workouts?page=26&limit=24",
"next": "/api/v1/workouts?page=18&limit=24",
"prev": "/api/v1/workouts?page=16&limit=24"
}
}