workouts
workouts
Page 26 of 26.
Overview
-
Quick Routine
#601
-
Upper Body Blast
#602
-
Quick Circuit
#603
-
Quick Circuit
#604
-
Recovery Session
#605
-
Intense Blast
#606
-
Evening Challenge
#607
-
HIIT Burn
#608
-
Easy Routine
#609
-
HIIT Session
#610
-
Full Workout
#611
-
Easy Training
#612
-
Full Circuit
#613
-
Easy Circuit
#614
-
Recovery Routine
#615
-
Recovery Training
#616
-
Power Burn
#617
-
HIIT Blast
#618
-
Easy Burn
#619
-
Quick Routine
#620
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": 601,
"userId": 244,
"kind": "sports",
"name": "Quick Routine",
"durationMinutes": 15,
"caloriesBurned": 94,
"intensity": "medium",
"notes": "Tough session but pushed through",
"performedAt": "2025-07-31T20:23:46.597Z",
"createdAt": "2025-07-31T20:39:56.285Z"
},
{
"id": 602,
"userId": 244,
"kind": "cardio",
"name": "Upper Body Blast",
"durationMinutes": 77,
"caloriesBurned": 800,
"intensity": "high",
"notes": "Should have gone heavier",
"performedAt": "2026-03-03T01:50:00.105Z",
"createdAt": "2026-03-03T01:58:27.413Z"
},
{
"id": 603,
"userId": 245,
"kind": "flexibility",
"name": "Quick Circuit",
"durationMinutes": 32,
"caloriesBurned": 243,
"intensity": "high",
"notes": "Great pump",
"performedAt": "2025-09-01T05:17:44.866Z",
"createdAt": "2025-09-01T05:20:03.691Z"
}
],
"meta": {
"page": 26,
"limit": 24,
"total": 620,
"totalPages": 26
},
"links": {
"self": "/api/v1/workouts?page=26&limit=24",
"first": "/api/v1/workouts?page=1&limit=24",
"last": "/api/v1/workouts?page=26&limit=24",
"next": null,
"prev": "/api/v1/workouts?page=25&limit=24"
}
}