example-data.com

workouts

workouts

Page 4 of 10.

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"
  }
}
Draftbit