workouts
workouts
Page 8 of 26.
Overview
-
HIIT Circuit
#169
-
Intense Training
#170
-
Intense Session
#171
-
Quick Challenge
#172
-
Upper Body Session
#173
-
Power Workout
#174
-
Intense Challenge
#175
-
Upper Body Session
#176
-
Core Circuit
#177
-
Lower Body Session
#178
-
Weekend Training
#179
-
Endurance Circuit
#180
-
Endurance Challenge
#181
-
Morning Routine
#182
-
Core Session
#183
-
Lower Body Session
#184
-
Morning Blast
#185
-
Core Circuit
#186
-
Lower Body Blast
#187
-
HIIT Training
#188
-
HIIT Workout
#189
-
Recovery Training
#190
-
Recovery Challenge
#191
-
Endurance Circuit
#192
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": 169,
"userId": 68,
"kind": "cardio",
"name": "HIIT Circuit",
"durationMinutes": 66,
"caloriesBurned": 570,
"intensity": "high",
"notes": "",
"performedAt": "2025-10-23T11:40:38.866Z",
"createdAt": "2025-10-23T12:25:28.813Z"
},
{
"id": 170,
"userId": 68,
"kind": "mixed",
"name": "Intense Training",
"durationMinutes": 81,
"caloriesBurned": 559,
"intensity": "medium",
"notes": "Cardio felt easy",
"performedAt": "2026-02-20T15:08:14.933Z",
"createdAt": "2026-02-20T15:40:37.137Z"
},
{
"id": 171,
"userId": 68,
"kind": "cardio",
"name": "Intense Session",
"durationMinutes": 48,
"caloriesBurned": 253,
"intensity": "medium",
"notes": "Great pump",
"performedAt": "2026-04-05T23:14:49.678Z",
"createdAt": "2026-04-05T23:31:46.880Z"
}
],
"meta": {
"page": 8,
"limit": 24,
"total": 620,
"totalPages": 26
},
"links": {
"self": "/api/v1/workouts?page=8&limit=24",
"first": "/api/v1/workouts?page=1&limit=24",
"last": "/api/v1/workouts?page=26&limit=24",
"next": "/api/v1/workouts?page=9&limit=24",
"prev": "/api/v1/workouts?page=7&limit=24"
}
}