workouts
workouts
Page 20 of 26.
Overview
-
Intense Blast
#457
-
Upper Body Challenge
#458
-
Endurance Workout
#459
-
Full Challenge
#460
-
Intense Burn
#461
-
Intense Blast
#462
-
Easy Session
#463
-
Lower Body Training
#464
-
Evening Routine
#465
-
Core Workout
#466
-
HIIT Burn
#467
-
Easy Burn
#468
-
Lower Body Circuit
#469
-
Core Blast
#470
-
Weekend Session
#471
-
Lower Body Blast
#472
-
Weekend Burn
#473
-
Power Training
#474
-
Core Session
#475
-
Upper Body Challenge
#476
-
Core Challenge
#477
-
Full Routine
#478
-
Lower Body Challenge
#479
-
Weekend Training
#480
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": 457,
"userId": 187,
"kind": "strength",
"name": "Intense Blast",
"durationMinutes": 49,
"caloriesBurned": 695,
"intensity": "very_high",
"notes": "Focused on form today",
"performedAt": "2026-03-12T00:53:47.823Z",
"createdAt": "2026-03-12T01:07:38.054Z"
},
{
"id": 458,
"userId": 187,
"kind": "strength",
"name": "Upper Body Challenge",
"durationMinutes": 42,
"caloriesBurned": 330,
"intensity": "high",
"notes": "Great pump",
"performedAt": "2025-07-14T15:58:08.118Z",
"createdAt": "2025-07-14T16:49:34.348Z"
},
{
"id": 459,
"userId": 187,
"kind": "cardio",
"name": "Endurance Workout",
"durationMinutes": 44,
"caloriesBurned": 169,
"intensity": "low",
"notes": "Should have gone heavier",
"performedAt": "2026-02-03T07:02:00.103Z",
"createdAt": "2026-02-03T07:15:49.748Z"
}
],
"meta": {
"page": 20,
"limit": 24,
"total": 620,
"totalPages": 26
},
"links": {
"self": "/api/v1/workouts?page=20&limit=24",
"first": "/api/v1/workouts?page=1&limit=24",
"last": "/api/v1/workouts?page=26&limit=24",
"next": "/api/v1/workouts?page=21&limit=24",
"prev": "/api/v1/workouts?page=19&limit=24"
}
}