workouts
workouts
Page 24 of 26.
Overview
-
Recovery Burn
#553
-
Full Training
#554
-
HIIT Burn
#555
-
Quick Circuit
#556
-
Quick Challenge
#557
-
Power Blast
#558
-
Recovery Challenge
#559
-
Easy Training
#560
-
HIIT Session
#561
-
Full Training
#562
-
Full Challenge
#563
-
Morning Workout
#564
-
Quick Blast
#565
-
Recovery Routine
#566
-
Power Circuit
#567
-
Endurance Routine
#568
-
Endurance Training
#569
-
Morning Circuit
#570
-
Core Training
#571
-
Lower Body Workout
#572
-
HIIT Challenge
#573
-
Evening Burn
#574
-
Easy Routine
#575
-
Upper Body Routine
#576
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": 553,
"userId": 225,
"kind": "cardio",
"name": "Recovery Burn",
"durationMinutes": 17,
"caloriesBurned": 95,
"intensity": "medium",
"notes": "",
"performedAt": "2026-03-12T03:19:26.318Z",
"createdAt": "2026-03-12T03:19:34.052Z"
},
{
"id": 554,
"userId": 226,
"kind": "strength",
"name": "Full Training",
"durationMinutes": 45,
"caloriesBurned": 272,
"intensity": "medium",
"notes": "Needed more rest between sets",
"performedAt": "2026-03-10T18:53:51.822Z",
"createdAt": "2026-03-10T19:32:02.129Z"
},
{
"id": 555,
"userId": 226,
"kind": "strength",
"name": "HIIT Burn",
"durationMinutes": 39,
"caloriesBurned": 426,
"intensity": "very_high",
"notes": "Tough session but pushed through",
"performedAt": "2025-09-28T10:14:01.156Z",
"createdAt": "2025-09-28T10:46:52.847Z"
}
],
"meta": {
"page": 24,
"limit": 24,
"total": 620,
"totalPages": 26
},
"links": {
"self": "/api/v1/workouts?page=24&limit=24",
"first": "/api/v1/workouts?page=1&limit=24",
"last": "/api/v1/workouts?page=26&limit=24",
"next": "/api/v1/workouts?page=25&limit=24",
"prev": "/api/v1/workouts?page=23&limit=24"
}
}