workouts
workouts
Page 22 of 26.
Overview
-
Morning Training
#505
-
Quick Session
#506
-
Endurance Routine
#507
-
Weekend Circuit
#508
-
Core Circuit
#509
-
Weekend Blast
#510
-
Full Blast
#511
-
Core Session
#512
-
Core Circuit
#513
-
Lower Body Session
#514
-
Lower Body Workout
#515
-
HIIT Circuit
#516
-
Core Session
#517
-
Lower Body Burn
#518
-
Full Workout
#519
-
Recovery Blast
#520
-
Evening Blast
#521
-
Evening Challenge
#522
-
Morning Session
#523
-
Upper Body Blast
#524
-
Endurance Training
#525
-
Weekend Training
#526
-
Weekend Routine
#527
-
HIIT Challenge
#528
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": 505,
"userId": 207,
"kind": "strength",
"name": "Morning Training",
"durationMinutes": 33,
"caloriesBurned": 183,
"intensity": "medium",
"notes": "Cardio felt easy",
"performedAt": "2026-05-13T02:03:49.345Z",
"createdAt": "2026-05-13T02:16:49.737Z"
},
{
"id": 506,
"userId": 207,
"kind": "cardio",
"name": "Quick Session",
"durationMinutes": 83,
"caloriesBurned": 350,
"intensity": "low",
"notes": "",
"performedAt": "2025-09-21T08:54:02.228Z",
"createdAt": "2025-09-21T08:58:37.410Z"
},
{
"id": 507,
"userId": 207,
"kind": "cardio",
"name": "Endurance Routine",
"durationMinutes": 83,
"caloriesBurned": 395,
"intensity": "low",
"notes": "",
"performedAt": "2026-02-08T04:06:29.718Z",
"createdAt": "2026-02-08T04:30:35.747Z"
}
],
"meta": {
"page": 22,
"limit": 24,
"total": 620,
"totalPages": 26
},
"links": {
"self": "/api/v1/workouts?page=22&limit=24",
"first": "/api/v1/workouts?page=1&limit=24",
"last": "/api/v1/workouts?page=26&limit=24",
"next": "/api/v1/workouts?page=23&limit=24",
"prev": "/api/v1/workouts?page=21&limit=24"
}
}