workouts
workouts
Page 14 of 26.
Overview
-
Weekend Blast
#313
-
Intense Circuit
#314
-
Endurance Routine
#315
-
Recovery Training
#316
-
Power Burn
#317
-
Upper Body Blast
#318
-
Power Training
#319
-
Morning Circuit
#320
-
Weekend Blast
#321
-
Recovery Training
#322
-
Power Blast
#323
-
Lower Body Training
#324
-
Core Session
#325
-
Core Circuit
#326
-
Morning Training
#327
-
Core Session
#328
-
Quick Burn
#329
-
Evening Routine
#330
-
HIIT Circuit
#331
-
Intense Circuit
#332
-
Recovery Circuit
#333
-
Power Blast
#334
-
Easy Training
#335
-
Weekend Session
#336
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": 313,
"userId": 129,
"kind": "cardio",
"name": "Weekend Blast",
"durationMinutes": 39,
"caloriesBurned": 280,
"intensity": "medium",
"notes": "Needed more rest between sets",
"performedAt": "2025-07-09T22:08:57.753Z",
"createdAt": "2025-07-09T22:44:05.788Z"
},
{
"id": 314,
"userId": 129,
"kind": "mixed",
"name": "Intense Circuit",
"durationMinutes": 86,
"caloriesBurned": 719,
"intensity": "high",
"notes": "Ran out of time",
"performedAt": "2026-01-12T00:54:58.402Z",
"createdAt": "2026-01-12T01:53:59.807Z"
},
{
"id": 315,
"userId": 129,
"kind": "sports",
"name": "Endurance Routine",
"durationMinutes": 15,
"caloriesBurned": 210,
"intensity": "very_high",
"notes": "",
"performedAt": "2025-09-04T01:55:42.132Z",
"createdAt": "2025-09-04T02:20:43.903Z"
}
],
"meta": {
"page": 14,
"limit": 24,
"total": 620,
"totalPages": 26
},
"links": {
"self": "/api/v1/workouts?page=14&limit=24",
"first": "/api/v1/workouts?page=1&limit=24",
"last": "/api/v1/workouts?page=26&limit=24",
"next": "/api/v1/workouts?page=15&limit=24",
"prev": "/api/v1/workouts?page=13&limit=24"
}
}