workouts
workouts
Page 6 of 26.
Overview
-
Morning Session
#121
-
Intense Training
#122
-
HIIT Burn
#123
-
Full Training
#124
-
Full Burn
#125
-
Quick Circuit
#126
-
Recovery Circuit
#127
-
Easy Blast
#128
-
Full Workout
#129
-
Power Burn
#130
-
Upper Body Workout
#131
-
Quick Session
#132
-
Lower Body Burn
#133
-
Endurance Burn
#134
-
Core Session
#135
-
Upper Body Training
#136
-
Intense Training
#137
-
Core Workout
#138
-
Recovery Burn
#139
-
Full Routine
#140
-
Recovery Routine
#141
-
HIIT Session
#142
-
Endurance Training
#143
-
Morning Circuit
#144
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": 121,
"userId": 50,
"kind": "strength",
"name": "Morning Session",
"durationMinutes": 29,
"caloriesBurned": 117,
"intensity": "low",
"notes": "Focused on form today",
"performedAt": "2025-11-08T12:56:39.551Z",
"createdAt": "2025-11-08T13:07:19.054Z"
},
{
"id": 122,
"userId": 50,
"kind": "mixed",
"name": "Intense Training",
"durationMinutes": 28,
"caloriesBurned": 128,
"intensity": "low",
"notes": "Tough session but pushed through",
"performedAt": "2025-07-07T05:14:08.466Z",
"createdAt": "2025-07-07T05:40:49.284Z"
},
{
"id": 123,
"userId": 51,
"kind": "flexibility",
"name": "HIIT Burn",
"durationMinutes": 84,
"caloriesBurned": 870,
"intensity": "high",
"notes": "Tough session but pushed through",
"performedAt": "2025-08-31T12:41:15.332Z",
"createdAt": "2025-08-31T13:09:45.005Z"
}
],
"meta": {
"page": 6,
"limit": 24,
"total": 620,
"totalPages": 26
},
"links": {
"self": "/api/v1/workouts?page=6&limit=24",
"first": "/api/v1/workouts?page=1&limit=24",
"last": "/api/v1/workouts?page=26&limit=24",
"next": "/api/v1/workouts?page=7&limit=24",
"prev": "/api/v1/workouts?page=5&limit=24"
}
}