workouts
workouts
Page 5 of 26.
Overview
-
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
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": 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&limit=24",
"first": "/api/v1/workouts?page=1&limit=24",
"last": "/api/v1/workouts?page=26&limit=24",
"next": "/api/v1/workouts?page=6&limit=24",
"prev": "/api/v1/workouts?page=4&limit=24"
}
}