workouts
workouts
Page 13 of 26.
Overview
-
Power Session
#289
-
Easy Burn
#290
-
Lower Body Training
#291
-
Upper Body Challenge
#292
-
Lower Body Routine
#293
-
Full Challenge
#294
-
Power Training
#295
-
Core Training
#296
-
Intense Burn
#297
-
Easy Workout
#298
-
Easy Burn
#299
-
Endurance Circuit
#300
-
Full Training
#301
-
Recovery Training
#302
-
Power Circuit
#303
-
Morning Routine
#304
-
Easy Challenge
#305
-
Recovery Workout
#306
-
Recovery Challenge
#307
-
Upper Body Burn
#308
-
Evening Session
#309
-
Morning Workout
#310
-
Morning Workout
#311
-
Recovery Training
#312
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": 289,
"userId": 117,
"kind": "mixed",
"name": "Power Session",
"durationMinutes": 30,
"caloriesBurned": 106,
"intensity": "low",
"notes": "Should have gone heavier",
"performedAt": "2025-11-08T22:27:16.405Z",
"createdAt": "2025-11-08T23:01:17.955Z"
},
{
"id": 290,
"userId": 117,
"kind": "strength",
"name": "Easy Burn",
"durationMinutes": 34,
"caloriesBurned": 141,
"intensity": "low",
"notes": "Ran out of time",
"performedAt": "2025-07-05T00:52:43.707Z",
"createdAt": "2025-07-05T01:45:34.800Z"
},
{
"id": 291,
"userId": 118,
"kind": "sports",
"name": "Lower Body Training",
"durationMinutes": 75,
"caloriesBurned": 317,
"intensity": "low",
"notes": "Should have gone heavier",
"performedAt": "2025-12-11T16:49:32.333Z",
"createdAt": "2025-12-11T17:00:42.512Z"
}
],
"meta": {
"page": 13,
"limit": 24,
"total": 620,
"totalPages": 26
},
"links": {
"self": "/api/v1/workouts?page=13&limit=24",
"first": "/api/v1/workouts?page=1&limit=24",
"last": "/api/v1/workouts?page=26&limit=24",
"next": "/api/v1/workouts?page=14&limit=24",
"prev": "/api/v1/workouts?page=12&limit=24"
}
}