workouts
workouts
Page 5 of 10.
- workouts/97
- workouts/98
- workouts/99
- workouts/100
- workouts/101
- workouts/102
- workouts/103
- workouts/104
- workouts/105
- workouts/106
- workouts/107
- workouts/108
- workouts/109
- workouts/110
- workouts/111
- workouts/112
- workouts/113
- workouts/114
- workouts/115
- workouts/116
- workouts/117
- workouts/118
- workouts/119
- workouts/120
-
Evening Circuit
#97
-
Core Session
#98
-
Recovery Challenge
#99
-
Power Circuit
#100
-
Intense Challenge
#101
-
Weekend Blast
#102
-
HIIT Challenge
#103
-
Full Blast
#104
-
Morning Burn
#105
-
Evening Workout
#106
-
Easy Routine
#107
-
Weekend Blast
#108
-
Morning Workout
#109
-
Weekend Routine
#110
-
Evening Workout
#111
-
Lower Body Training
#112
-
Lower Body Workout
#113
-
Core Session
#114
-
Power Blast
#115
-
Recovery Blast
#116
-
Evening Circuit
#117
-
Power Burn
#118
-
Quick Burn
#119
-
Upper Body Routine
#120
- userId
-
Margaretta Barrows @margaretta_barrows41
- kind
- mixed
- name
- Evening Circuit
- durationMinutes
- 42
- caloriesBurned
- 373
- intensity
- high
- notes
- Great pump
- performedAt
- createdAt
- userId
-
Gwendolyn Wyman @gwendolyn.wyman87
- kind
- sports
- name
- Core Session
- durationMinutes
- 53
- caloriesBurned
- 677
- intensity
- very_high
- notes
- Great pump
- performedAt
- createdAt
- userId
-
Gwendolyn Wyman @gwendolyn.wyman87
- kind
- mixed
- name
- Recovery Challenge
- durationMinutes
- 66
- caloriesBurned
- 232
- intensity
- low
- notes
- Tough session but pushed through
- performedAt
- createdAt
- userId
-
Gwendolyn Wyman @gwendolyn.wyman87
- kind
- sports
- name
- Power Circuit
- durationMinutes
- 70
- caloriesBurned
- 285
- intensity
- low
- notes
- performedAt
- createdAt
- userId
-
Gwendolyn Wyman @gwendolyn.wyman87
- kind
- flexibility
- name
- Intense Challenge
- durationMinutes
- 55
- caloriesBurned
- 290
- intensity
- medium
- notes
- Focused on form today
- performedAt
- createdAt
- userId
-
Amely Daniel @amely_daniel
- kind
- sports
- name
- Weekend Blast
- durationMinutes
- 83
- caloriesBurned
- 348
- intensity
- low
- notes
- Should have gone heavier
- 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": 97,
"userId": 39,
"kind": "mixed",
"name": "Evening Circuit",
"durationMinutes": 42,
"caloriesBurned": 373,
"intensity": "high",
"notes": "Great pump",
"performedAt": "2026-02-03T13:49:28.438Z",
"createdAt": "2026-02-03T14:03:24.774Z"
},
{
"id": 98,
"userId": 40,
"kind": "sports",
"name": "Core Session",
"durationMinutes": 53,
"caloriesBurned": 677,
"intensity": "very_high",
"notes": "Great pump",
"performedAt": "2026-02-21T00:17:41.229Z",
"createdAt": "2026-02-21T00:46:35.429Z"
},
{
"id": 99,
"userId": 40,
"kind": "mixed",
"name": "Recovery Challenge",
"durationMinutes": 66,
"caloriesBurned": 232,
"intensity": "low",
"notes": "Tough session but pushed through",
"performedAt": "2026-05-11T02:51:39.370Z",
"createdAt": "2026-05-11T03:01:40.295Z"
}
],
"meta": {
"page": 5,
"limit": 24,
"total": 620,
"totalPages": 26
},
"links": {
"self": "/api/v1/workouts?page=5",
"next": "/api/v1/workouts?page=6",
"prev": "/api/v1/workouts?page=4"
}
}