workouts
workouts
Page 15 of 26.
Overview
-
Power Routine
#337
-
HIIT Burn
#338
-
Power Routine
#339
-
Evening Burn
#340
-
Core Workout
#341
-
Quick Circuit
#342
-
Recovery Session
#343
-
Recovery Workout
#344
-
Core Workout
#345
-
Full Session
#346
-
Upper Body Training
#347
-
Upper Body Challenge
#348
-
Core Burn
#349
-
Upper Body Training
#350
-
HIIT Burn
#351
-
Full Challenge
#352
-
Easy Training
#353
-
Quick Challenge
#354
-
Endurance Blast
#355
-
Upper Body Training
#356
-
Easy Circuit
#357
-
Endurance Blast
#358
-
Evening Challenge
#359
-
Endurance Session
#360
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": 337,
"userId": 137,
"kind": "sports",
"name": "Power Routine",
"durationMinutes": 76,
"caloriesBurned": 651,
"intensity": "high",
"notes": "",
"performedAt": "2025-12-22T21:13:39.492Z",
"createdAt": "2025-12-22T21:25:48.874Z"
},
{
"id": 338,
"userId": 137,
"kind": "strength",
"name": "HIIT Burn",
"durationMinutes": 50,
"caloriesBurned": 198,
"intensity": "low",
"notes": "",
"performedAt": "2025-06-03T18:36:03.516Z",
"createdAt": "2025-06-03T19:29:01.685Z"
},
{
"id": 339,
"userId": 137,
"kind": "flexibility",
"name": "Power Routine",
"durationMinutes": 90,
"caloriesBurned": 346,
"intensity": "low",
"notes": "Did extra sets",
"performedAt": "2025-06-23T16:23:41.683Z",
"createdAt": "2025-06-23T17:05:53.277Z"
}
],
"meta": {
"page": 15,
"limit": 24,
"total": 620,
"totalPages": 26
},
"links": {
"self": "/api/v1/workouts?page=15&limit=24",
"first": "/api/v1/workouts?page=1&limit=24",
"last": "/api/v1/workouts?page=26&limit=24",
"next": "/api/v1/workouts?page=16&limit=24",
"prev": "/api/v1/workouts?page=14&limit=24"
}
}