workouts
workouts
Page 10 of 26.
Overview
-
Morning Workout
#217
-
Lower Body Blast
#218
-
HIIT Burn
#219
-
Quick Circuit
#220
-
Recovery Workout
#221
-
Power Routine
#222
-
Weekend Burn
#223
-
Recovery Burn
#224
-
HIIT Circuit
#225
-
Easy Challenge
#226
-
Power Circuit
#227
-
Core Blast
#228
-
HIIT Circuit
#229
-
Core Session
#230
-
Intense Blast
#231
-
Weekend Blast
#232
-
HIIT Circuit
#233
-
Power Routine
#234
-
Evening Workout
#235
-
HIIT Burn
#236
-
Endurance Training
#237
-
Lower Body Circuit
#238
-
Morning Session
#239
-
Upper Body Challenge
#240
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": 217,
"userId": 88,
"kind": "strength",
"name": "Morning Workout",
"durationMinutes": 86,
"caloriesBurned": 366,
"intensity": "low",
"notes": "",
"performedAt": "2025-08-15T22:52:23.896Z",
"createdAt": "2025-08-15T23:15:44.971Z"
},
{
"id": 218,
"userId": 88,
"kind": "strength",
"name": "Lower Body Blast",
"durationMinutes": 63,
"caloriesBurned": 518,
"intensity": "high",
"notes": "Tough session but pushed through",
"performedAt": "2025-08-29T02:24:03.032Z",
"createdAt": "2025-08-29T02:49:10.691Z"
},
{
"id": 219,
"userId": 89,
"kind": "flexibility",
"name": "HIIT Burn",
"durationMinutes": 32,
"caloriesBurned": 156,
"intensity": "medium",
"notes": "",
"performedAt": "2025-05-22T08:52:10.082Z",
"createdAt": "2025-05-22T09:39:50.957Z"
}
],
"meta": {
"page": 10,
"limit": 24,
"total": 620,
"totalPages": 26
},
"links": {
"self": "/api/v1/workouts?page=10&limit=24",
"first": "/api/v1/workouts?page=1&limit=24",
"last": "/api/v1/workouts?page=26&limit=24",
"next": "/api/v1/workouts?page=11&limit=24",
"prev": "/api/v1/workouts?page=9&limit=24"
}
}