workouts
workouts
Page 12 of 26.
Overview
-
Recovery Workout
#265
-
Quick Session
#266
-
Upper Body Training
#267
-
Power Burn
#268
-
Intense Challenge
#269
-
Evening Burn
#270
-
Upper Body Training
#271
-
Evening Circuit
#272
-
Upper Body Challenge
#273
-
Upper Body Blast
#274
-
Endurance Routine
#275
-
Full Routine
#276
-
HIIT Burn
#277
-
Recovery Circuit
#278
-
Weekend Blast
#279
-
Power Training
#280
-
Power Burn
#281
-
Evening Workout
#282
-
Evening Session
#283
-
Morning Workout
#284
-
Weekend Blast
#285
-
Morning Workout
#286
-
Intense Challenge
#287
-
Lower Body Session
#288
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": 265,
"userId": 107,
"kind": "sports",
"name": "Recovery Workout",
"durationMinutes": 86,
"caloriesBurned": 283,
"intensity": "low",
"notes": "Should have gone heavier",
"performedAt": "2025-06-24T18:37:58.700Z",
"createdAt": "2025-06-24T19:15:56.262Z"
},
{
"id": 266,
"userId": 107,
"kind": "strength",
"name": "Quick Session",
"durationMinutes": 68,
"caloriesBurned": 725,
"intensity": "high",
"notes": "Needed more rest between sets",
"performedAt": "2026-03-12T10:12:41.708Z",
"createdAt": "2026-03-12T10:39:00.237Z"
},
{
"id": 267,
"userId": 108,
"kind": "cardio",
"name": "Upper Body Training",
"durationMinutes": 49,
"caloriesBurned": 496,
"intensity": "very_high",
"notes": "Did extra sets",
"performedAt": "2025-12-18T21:52:44.671Z",
"createdAt": "2025-12-18T22:23:37.207Z"
}
],
"meta": {
"page": 12,
"limit": 24,
"total": 620,
"totalPages": 26
},
"links": {
"self": "/api/v1/workouts?page=12&limit=24",
"first": "/api/v1/workouts?page=1&limit=24",
"last": "/api/v1/workouts?page=26&limit=24",
"next": "/api/v1/workouts?page=13&limit=24",
"prev": "/api/v1/workouts?page=11&limit=24"
}
}