workouts
workouts
Page 3 of 10.
-
Recovery Challenge
#49
-
Weekend Routine
#50
-
Evening Challenge
#51
-
Evening Workout
#52
-
Morning Challenge
#53
-
Evening Circuit
#54
-
Morning Workout
#55
-
Weekend Workout
#56
-
Evening Workout
#57
-
Endurance Circuit
#58
-
Morning Burn
#59
-
Core Session
#60
-
Full Workout
#61
-
Core Burn
#62
-
Lower Body Workout
#63
-
Morning Challenge
#64
-
Full Burn
#65
-
Intense Training
#66
-
HIIT Challenge
#67
-
Lower Body Challenge
#68
-
Full Blast
#69
-
Upper Body Challenge
#70
-
Quick Burn
#71
-
Morning Blast
#72
- userId
-
Melba Collier @melba.collier
- kind
- cardio
- name
- Recovery Challenge
- durationMinutes
- 78
- caloriesBurned
- 757
- intensity
- high
- notes
- performedAt
- createdAt
- userId
-
Melba Collier @melba.collier
- kind
- flexibility
- name
- Weekend Routine
- durationMinutes
- 49
- caloriesBurned
- 235
- intensity
- low
- notes
- Did extra sets
- performedAt
- createdAt
- userId
-
Melba Collier @melba.collier
- kind
- strength
- name
- Evening Challenge
- durationMinutes
- 82
- caloriesBurned
- 640
- intensity
- high
- notes
- Did extra sets
- performedAt
- createdAt
- userId
-
Alvina Koch @alvina.koch8
- kind
- cardio
- name
- Evening Workout
- durationMinutes
- 66
- caloriesBurned
- 450
- intensity
- medium
- notes
- Cardio felt easy
- performedAt
- createdAt
- userId
-
Guy Christiansen @guy.christiansen40
- kind
- flexibility
- name
- Morning Challenge
- durationMinutes
- 90
- caloriesBurned
- 888
- intensity
- very_high
- notes
- Cardio felt easy
- performedAt
- createdAt
- userId
-
Guy Christiansen @guy.christiansen40
- kind
- strength
- name
- Evening Circuit
- durationMinutes
- 86
- caloriesBurned
- 562
- intensity
- medium
- 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": 49,
"userId": 19,
"kind": "cardio",
"name": "Recovery Challenge",
"durationMinutes": 78,
"caloriesBurned": 757,
"intensity": "high",
"notes": "",
"performedAt": "2025-09-28T22:55:21.316Z",
"createdAt": "2025-09-28T23:54:44.405Z"
},
{
"id": 50,
"userId": 19,
"kind": "flexibility",
"name": "Weekend Routine",
"durationMinutes": 49,
"caloriesBurned": 235,
"intensity": "low",
"notes": "Did extra sets",
"performedAt": "2025-05-29T12:41:35.838Z",
"createdAt": "2025-05-29T13:26:57.005Z"
},
{
"id": 51,
"userId": 19,
"kind": "strength",
"name": "Evening Challenge",
"durationMinutes": 82,
"caloriesBurned": 640,
"intensity": "high",
"notes": "Did extra sets",
"performedAt": "2026-02-12T23:08:18.989Z",
"createdAt": "2026-02-13T00:04:12.866Z"
}
],
"meta": {
"page": 3,
"limit": 24,
"total": 620,
"totalPages": 26
},
"links": {
"self": "/api/v1/workouts?page=3",
"next": "/api/v1/workouts?page=4",
"prev": "/api/v1/workouts?page=2"
}
}