workouts
workouts
Page 23 of 26.
Overview
-
Power Training
#529
-
Intense Circuit
#530
-
Core Session
#531
-
Lower Body Workout
#532
-
Quick Session
#533
-
Morning Challenge
#534
-
Lower Body Blast
#535
-
Upper Body Blast
#536
-
Evening Circuit
#537
-
Core Session
#538
-
Evening Session
#539
-
Morning Burn
#540
-
Upper Body Training
#541
-
Easy Blast
#542
-
Core Burn
#543
-
Intense Training
#544
-
HIIT Workout
#545
-
Lower Body Blast
#546
-
Core Burn
#547
-
Recovery Challenge
#548
-
Recovery Training
#549
-
Weekend Circuit
#550
-
Intense Challenge
#551
-
Evening Challenge
#552
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": 529,
"userId": 217,
"kind": "mixed",
"name": "Power Training",
"durationMinutes": 29,
"caloriesBurned": 350,
"intensity": "very_high",
"notes": "",
"performedAt": "2026-03-01T20:34:48.715Z",
"createdAt": "2026-03-01T21:18:45.220Z"
},
{
"id": 530,
"userId": 217,
"kind": "cardio",
"name": "Intense Circuit",
"durationMinutes": 67,
"caloriesBurned": 921,
"intensity": "very_high",
"notes": "Did extra sets",
"performedAt": "2026-04-17T01:18:00.724Z",
"createdAt": "2026-04-17T02:04:40.358Z"
},
{
"id": 531,
"userId": 217,
"kind": "strength",
"name": "Core Session",
"durationMinutes": 86,
"caloriesBurned": 551,
"intensity": "medium",
"notes": "",
"performedAt": "2026-04-25T19:23:50.735Z",
"createdAt": "2026-04-25T19:26:15.605Z"
}
],
"meta": {
"page": 23,
"limit": 24,
"total": 620,
"totalPages": 26
},
"links": {
"self": "/api/v1/workouts?page=23&limit=24",
"first": "/api/v1/workouts?page=1&limit=24",
"last": "/api/v1/workouts?page=26&limit=24",
"next": "/api/v1/workouts?page=24&limit=24",
"prev": "/api/v1/workouts?page=22&limit=24"
}
}