workouts
workouts
Page 11 of 26.
Overview
-
Quick Workout
#241
-
Endurance Routine
#242
-
Endurance Challenge
#243
-
Quick Training
#244
-
Core Session
#245
-
Easy Training
#246
-
Easy Workout
#247
-
Recovery Challenge
#248
-
HIIT Routine
#249
-
Intense Blast
#250
-
Endurance Workout
#251
-
Recovery Circuit
#252
-
Lower Body Blast
#253
-
Weekend Session
#254
-
Intense Burn
#255
-
Recovery Workout
#256
-
Intense Session
#257
-
Upper Body Training
#258
-
Power Circuit
#259
-
Quick Burn
#260
-
Power Blast
#261
-
Weekend Blast
#262
-
Quick Workout
#263
-
Full Challenge
#264
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": 241,
"userId": 97,
"kind": "sports",
"name": "Quick Workout",
"durationMinutes": 69,
"caloriesBurned": 370,
"intensity": "medium",
"notes": "Tough session but pushed through",
"performedAt": "2026-01-13T10:46:04.138Z",
"createdAt": "2026-01-13T11:42:21.771Z"
},
{
"id": 242,
"userId": 98,
"kind": "cardio",
"name": "Endurance Routine",
"durationMinutes": 32,
"caloriesBurned": 116,
"intensity": "low",
"notes": "Did extra sets",
"performedAt": "2025-09-27T00:15:32.057Z",
"createdAt": "2025-09-27T00:29:40.306Z"
},
{
"id": 243,
"userId": 99,
"kind": "strength",
"name": "Endurance Challenge",
"durationMinutes": 33,
"caloriesBurned": 344,
"intensity": "high",
"notes": "Great pump",
"performedAt": "2025-09-29T00:12:00.855Z",
"createdAt": "2025-09-29T00:28:49.758Z"
}
],
"meta": {
"page": 11,
"limit": 24,
"total": 620,
"totalPages": 26
},
"links": {
"self": "/api/v1/workouts?page=11&limit=24",
"first": "/api/v1/workouts?page=1&limit=24",
"last": "/api/v1/workouts?page=26&limit=24",
"next": "/api/v1/workouts?page=12&limit=24",
"prev": "/api/v1/workouts?page=10&limit=24"
}
}