workouts
workouts
Page 7 of 10.
- workouts/145
- workouts/146
- workouts/147
- workouts/148
- workouts/149
- workouts/150
- workouts/151
- workouts/152
- workouts/153
- workouts/154
- workouts/155
- workouts/156
- workouts/157
- workouts/158
- workouts/159
- workouts/160
- workouts/161
- workouts/162
- workouts/163
- workouts/164
- workouts/165
- workouts/166
- workouts/167
- workouts/168
-
Morning Challenge
#145
-
Quick Circuit
#146
-
Evening Blast
#147
-
Recovery Workout
#148
-
Lower Body Routine
#149
-
Evening Routine
#150
-
Recovery Training
#151
-
Weekend Session
#152
-
Core Burn
#153
-
Full Workout
#154
-
Easy Workout
#155
-
Easy Blast
#156
-
Quick Routine
#157
-
Quick Training
#158
-
Quick Session
#159
-
Evening Blast
#160
-
Weekend Circuit
#161
-
Power Circuit
#162
-
Recovery Training
#163
-
Recovery Burn
#164
-
Quick Session
#165
-
Quick Blast
#166
-
Evening Challenge
#167
-
Quick Routine
#168
- userId
-
Autumn Bartell @autumn.bartell95
- kind
- cardio
- name
- Morning Challenge
- durationMinutes
- 20
- caloriesBurned
- 189
- intensity
- high
- notes
- Cardio felt easy
- performedAt
- createdAt
- userId
-
Lilla Koss @lilla.koss
- kind
- flexibility
- name
- Quick Circuit
- durationMinutes
- 56
- caloriesBurned
- 250
- intensity
- low
- notes
- Ran out of time
- performedAt
- createdAt
- userId
-
Lilla Koss @lilla.koss
- kind
- cardio
- name
- Evening Blast
- durationMinutes
- 16
- caloriesBurned
- 150
- intensity
- high
- notes
- Great pump
- performedAt
- createdAt
- userId
-
Merl Jenkins @merl.jenkins6
- kind
- mixed
- name
- Recovery Workout
- durationMinutes
- 66
- caloriesBurned
- 525
- intensity
- high
- notes
- Personal best on squats
- performedAt
- createdAt
- userId
-
Merl Jenkins @merl.jenkins6
- kind
- flexibility
- name
- Lower Body Routine
- durationMinutes
- 23
- caloriesBurned
- 90
- intensity
- low
- notes
- performedAt
- createdAt
- userId
-
Merl Jenkins @merl.jenkins6
- kind
- cardio
- name
- Evening Routine
- durationMinutes
- 63
- caloriesBurned
- 613
- intensity
- high
- notes
- performedAt
- createdAt
Showing first 6 of 24 on this page.
curl -sS \
"https://example-data.com/api/v1/workouts?limit=25"const res = await fetch(
"https://example-data.com/api/v1/workouts?limit=25"
);
const { data, meta } = await res.json();import type { Workout, ListEnvelope } from "https://example-data.com/types/workouts.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/workouts?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Workout>;import requests
res = requests.get(
"https://example-data.com/api/v1/workouts",
params={"limit": 25},
)
data = res.json() {
"data": [
{
"id": 145,
"userId": 58,
"kind": "cardio",
"name": "Morning Challenge",
"durationMinutes": 20,
"caloriesBurned": 189,
"intensity": "high",
"notes": "Cardio felt easy",
"performedAt": "2026-04-10T21:16:57.676Z",
"createdAt": "2026-04-10T22:07:47.136Z"
},
{
"id": 146,
"userId": 59,
"kind": "flexibility",
"name": "Quick Circuit",
"durationMinutes": 56,
"caloriesBurned": 250,
"intensity": "low",
"notes": "Ran out of time",
"performedAt": "2025-06-18T21:16:48.690Z",
"createdAt": "2025-06-18T21:53:55.380Z"
},
{
"id": 147,
"userId": 59,
"kind": "cardio",
"name": "Evening Blast",
"durationMinutes": 16,
"caloriesBurned": 150,
"intensity": "high",
"notes": "Great pump",
"performedAt": "2025-10-24T02:18:44.907Z",
"createdAt": "2025-10-24T03:18:43.679Z"
}
],
"meta": {
"page": 7,
"limit": 24,
"total": 620,
"totalPages": 26
},
"links": {
"self": "/api/v1/workouts?page=7",
"next": "/api/v1/workouts?page=8",
"prev": "/api/v1/workouts?page=6"
}
}