workouts
workouts
Page 2 of 26.
Overview
-
Endurance Circuit
#25
-
Full Routine
#26
-
Recovery Routine
#27
-
Morning Routine
#28
-
Morning Training
#29
-
Quick Blast
#30
-
HIIT Session
#31
-
Intense Blast
#32
-
HIIT Training
#33
-
Full Session
#34
-
Evening Routine
#35
-
Endurance Session
#36
-
Recovery Session
#37
-
Recovery Session
#38
-
Weekend Circuit
#39
-
Evening Blast
#40
-
Recovery Session
#41
-
Full Session
#42
-
Easy Workout
#43
-
Morning Training
#44
-
Evening Blast
#45
-
Easy Workout
#46
-
Power Challenge
#47
-
HIIT Routine
#48
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": 25,
"userId": 9,
"kind": "sports",
"name": "Endurance Circuit",
"durationMinutes": 36,
"caloriesBurned": 197,
"intensity": "medium",
"notes": "Felt strong today",
"performedAt": "2026-01-02T01:54:10.616Z",
"createdAt": "2026-01-02T02:00:51.824Z"
},
{
"id": 26,
"userId": 9,
"kind": "strength",
"name": "Full Routine",
"durationMinutes": 31,
"caloriesBurned": 220,
"intensity": "medium",
"notes": "Ran out of time",
"performedAt": "2026-05-01T18:24:21.757Z",
"createdAt": "2026-05-01T18:57:34.866Z"
},
{
"id": 27,
"userId": 9,
"kind": "sports",
"name": "Recovery Routine",
"durationMinutes": 54,
"caloriesBurned": 512,
"intensity": "high",
"notes": "Great pump",
"performedAt": "2025-10-09T22:20:11.763Z",
"createdAt": "2025-10-09T22:48:47.813Z"
}
],
"meta": {
"page": 2,
"limit": 24,
"total": 620,
"totalPages": 26
},
"links": {
"self": "/api/v1/workouts?page=2&limit=24",
"first": "/api/v1/workouts?page=1&limit=24",
"last": "/api/v1/workouts?page=26&limit=24",
"next": "/api/v1/workouts?page=3&limit=24",
"prev": "/api/v1/workouts?page=1&limit=24"
}
}