workouts
workouts
Page 10 of 10.
- workouts/217
- workouts/218
- workouts/219
- workouts/220
- workouts/221
- workouts/222
- workouts/223
- workouts/224
- workouts/225
- workouts/226
- workouts/227
- workouts/228
- workouts/229
- workouts/230
- workouts/231
- workouts/232
- workouts/233
- workouts/234
- workouts/235
- workouts/236
- workouts/237
- workouts/238
- workouts/239
- workouts/240
-
Morning Workout
#217
-
Lower Body Blast
#218
-
HIIT Burn
#219
-
Quick Circuit
#220
-
Recovery Workout
#221
-
Power Routine
#222
-
Weekend Burn
#223
-
Recovery Burn
#224
-
HIIT Circuit
#225
-
Easy Challenge
#226
-
Power Circuit
#227
-
Core Blast
#228
-
HIIT Circuit
#229
-
Core Session
#230
-
Intense Blast
#231
-
Weekend Blast
#232
-
HIIT Circuit
#233
-
Power Routine
#234
-
Evening Workout
#235
-
HIIT Burn
#236
-
Endurance Training
#237
-
Lower Body Circuit
#238
-
Morning Session
#239
-
Upper Body Challenge
#240
- userId
-
Pinkie Denesik @pinkie_denesik32
- kind
- strength
- name
- Morning Workout
- durationMinutes
- 86
- caloriesBurned
- 366
- intensity
- low
- notes
- performedAt
- createdAt
- userId
-
Pinkie Denesik @pinkie_denesik32
- kind
- strength
- name
- Lower Body Blast
- durationMinutes
- 63
- caloriesBurned
- 518
- intensity
- high
- notes
- Tough session but pushed through
- performedAt
- createdAt
- userId
-
Mazie Douglas @mazie_douglas
- kind
- flexibility
- name
- HIIT Burn
- durationMinutes
- 32
- caloriesBurned
- 156
- intensity
- medium
- notes
- performedAt
- createdAt
- userId
-
Mazie Douglas @mazie_douglas
- kind
- sports
- name
- Quick Circuit
- durationMinutes
- 65
- caloriesBurned
- 710
- intensity
- very_high
- notes
- Focused on form today
- performedAt
- createdAt
- userId
-
Mazie Douglas @mazie_douglas
- kind
- cardio
- name
- Recovery Workout
- durationMinutes
- 55
- caloriesBurned
- 605
- intensity
- very_high
- notes
- Cardio felt easy
- performedAt
- createdAt
- userId
-
Myrl Pollich @myrl.pollich
- kind
- flexibility
- name
- Power Routine
- durationMinutes
- 21
- caloriesBurned
- 169
- 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": 217,
"userId": 88,
"kind": "strength",
"name": "Morning Workout",
"durationMinutes": 86,
"caloriesBurned": 366,
"intensity": "low",
"notes": "",
"performedAt": "2025-08-15T22:52:23.896Z",
"createdAt": "2025-08-15T23:15:44.971Z"
},
{
"id": 218,
"userId": 88,
"kind": "strength",
"name": "Lower Body Blast",
"durationMinutes": 63,
"caloriesBurned": 518,
"intensity": "high",
"notes": "Tough session but pushed through",
"performedAt": "2025-08-29T02:24:03.032Z",
"createdAt": "2025-08-29T02:49:10.691Z"
},
{
"id": 219,
"userId": 89,
"kind": "flexibility",
"name": "HIIT Burn",
"durationMinutes": 32,
"caloriesBurned": 156,
"intensity": "medium",
"notes": "",
"performedAt": "2025-05-22T08:52:10.082Z",
"createdAt": "2025-05-22T09:39:50.957Z"
}
],
"meta": {
"page": 10,
"limit": 24,
"total": 620,
"totalPages": 26
},
"links": {
"self": "/api/v1/workouts?page=10",
"next": "/api/v1/workouts?page=11",
"prev": "/api/v1/workouts?page=9"
}
}