workouts
workouts
Page 4 of 10.
-
Weekend Workout
#73
-
Core Blast
#74
-
Recovery Burn
#75
-
Full Burn
#76
-
Full Blast
#77
-
Endurance Session
#78
-
Easy Challenge
#79
-
Morning Challenge
#80
-
Core Training
#81
-
Endurance Workout
#82
-
Power Session
#83
-
Full Session
#84
-
Upper Body Training
#85
-
Intense Circuit
#86
-
Recovery Session
#87
-
Upper Body Blast
#88
-
Quick Blast
#89
-
Full Circuit
#90
-
Lower Body Challenge
#91
-
Upper Body Challenge
#92
-
Upper Body Session
#93
-
Recovery Training
#94
-
Full Burn
#95
-
Lower Body Workout
#96
- userId
-
Jensen Bashirian @jensen_bashirian
- kind
- strength
- name
- Weekend Workout
- durationMinutes
- 72
- caloriesBurned
- 296
- intensity
- low
- notes
- Tough session but pushed through
- performedAt
- createdAt
- userId
-
Jensen Bashirian @jensen_bashirian
- kind
- flexibility
- name
- Core Blast
- durationMinutes
- 19
- caloriesBurned
- 132
- intensity
- medium
- notes
- Great pump
- performedAt
- createdAt
- userId
-
Jensen Bashirian @jensen_bashirian
- kind
- cardio
- name
- Recovery Burn
- durationMinutes
- 30
- caloriesBurned
- 217
- intensity
- high
- notes
- Focused on form today
- performedAt
- createdAt
- userId
-
Jensen Bashirian @jensen_bashirian
- kind
- mixed
- name
- Full Burn
- durationMinutes
- 54
- caloriesBurned
- 271
- intensity
- medium
- notes
- Cardio felt easy
- performedAt
- createdAt
- userId
-
Conrad Connelly @conrad.connelly22
- kind
- flexibility
- name
- Full Blast
- durationMinutes
- 38
- caloriesBurned
- 168
- intensity
- low
- notes
- Needed more rest between sets
- performedAt
- createdAt
- userId
-
Izaiah Rempel @izaiah_rempel
- kind
- sports
- name
- Endurance Session
- durationMinutes
- 17
- caloriesBurned
- 70
- intensity
- low
- notes
- Did extra sets
- 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": 73,
"userId": 29,
"kind": "strength",
"name": "Weekend Workout",
"durationMinutes": 72,
"caloriesBurned": 296,
"intensity": "low",
"notes": "Tough session but pushed through",
"performedAt": "2026-03-03T06:30:12.624Z",
"createdAt": "2026-03-03T07:02:40.368Z"
},
{
"id": 74,
"userId": 29,
"kind": "flexibility",
"name": "Core Blast",
"durationMinutes": 19,
"caloriesBurned": 132,
"intensity": "medium",
"notes": "Great pump",
"performedAt": "2026-04-05T10:37:43.792Z",
"createdAt": "2026-04-05T11:08:07.783Z"
},
{
"id": 75,
"userId": 29,
"kind": "cardio",
"name": "Recovery Burn",
"durationMinutes": 30,
"caloriesBurned": 217,
"intensity": "high",
"notes": "Focused on form today",
"performedAt": "2026-02-24T02:00:29.375Z",
"createdAt": "2026-02-24T02:33:32.714Z"
}
],
"meta": {
"page": 4,
"limit": 24,
"total": 620,
"totalPages": 26
},
"links": {
"self": "/api/v1/workouts?page=4",
"next": "/api/v1/workouts?page=5",
"prev": "/api/v1/workouts?page=3"
}
}