workouts
workouts
Page 9 of 26.
Overview
-
Power Burn
#193
-
Weekend Session
#194
-
Core Challenge
#195
-
Power Circuit
#196
-
Easy Session
#197
-
Full Challenge
#198
-
Lower Body Training
#199
-
Upper Body Burn
#200
-
Weekend Challenge
#201
-
Upper Body Routine
#202
-
Lower Body Routine
#203
-
Evening Burn
#204
-
Full Blast
#205
-
Endurance Routine
#206
-
Upper Body Training
#207
-
Weekend Session
#208
-
Intense Circuit
#209
-
Power Workout
#210
-
Weekend Blast
#211
-
Core Routine
#212
-
Upper Body Routine
#213
-
Quick Burn
#214
-
Quick Routine
#215
-
Lower Body Challenge
#216
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": 193,
"userId": 78,
"kind": "flexibility",
"name": "Power Burn",
"durationMinutes": 77,
"caloriesBurned": 445,
"intensity": "medium",
"notes": "",
"performedAt": "2025-07-15T15:25:00.762Z",
"createdAt": "2025-07-15T16:13:15.660Z"
},
{
"id": 194,
"userId": 79,
"kind": "mixed",
"name": "Weekend Session",
"durationMinutes": 46,
"caloriesBurned": 462,
"intensity": "high",
"notes": "Did extra sets",
"performedAt": "2025-06-26T00:32:09.640Z",
"createdAt": "2025-06-26T01:03:18.930Z"
},
{
"id": 195,
"userId": 80,
"kind": "flexibility",
"name": "Core Challenge",
"durationMinutes": 77,
"caloriesBurned": 325,
"intensity": "low",
"notes": "",
"performedAt": "2025-09-23T04:33:58.993Z",
"createdAt": "2025-09-23T04:57:41.040Z"
}
],
"meta": {
"page": 9,
"limit": 24,
"total": 620,
"totalPages": 26
},
"links": {
"self": "/api/v1/workouts?page=9&limit=24",
"first": "/api/v1/workouts?page=1&limit=24",
"last": "/api/v1/workouts?page=26&limit=24",
"next": "/api/v1/workouts?page=10&limit=24",
"prev": "/api/v1/workouts?page=8&limit=24"
}
}