workouts
workouts
Page 3 of 26.
Overview
-
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
Request
curl example
curl -sS \ "https://example-data.com/api/v1/workouts?limit=25"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/workouts?limit=25"
);
const { data, meta } = await res.json(); TypeScript example
// Download once: mkdir -p types && curl -o types/workouts.d.ts https://example-data.com/types/workouts.d.ts
import type { Workout, ListEnvelope } from "./types/workouts";
const res = await fetch(
"https://example-data.com/api/v1/workouts?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Workout>; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/workouts",
params={"limit": 25},
)
data = res.json() Response
{
"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&limit=24",
"first": "/api/v1/workouts?page=1&limit=24",
"last": "/api/v1/workouts?page=26&limit=24",
"next": "/api/v1/workouts?page=4&limit=24",
"prev": "/api/v1/workouts?page=2&limit=24"
}
}