example-data.com

workouts

workouts

Page 8 of 10.

userId
Jewell Olson @jewell_olson2
kind
cardio
name
HIIT Circuit
durationMinutes
66
caloriesBurned
570
intensity
high
notes
performedAt
createdAt
userId
Jewell Olson @jewell_olson2
kind
mixed
name
Intense Training
durationMinutes
81
caloriesBurned
559
intensity
medium
notes
Cardio felt easy
performedAt
createdAt
userId
Jewell Olson @jewell_olson2
kind
cardio
name
Intense Session
durationMinutes
48
caloriesBurned
253
intensity
medium
notes
Great pump
performedAt
createdAt
userId
Lamont Huel @lamont.huel
kind
mixed
name
Quick Challenge
durationMinutes
61
caloriesBurned
377
intensity
medium
notes
Focused on form today
performedAt
createdAt
userId
Lamont Huel @lamont.huel
kind
strength
name
Upper Body Session
durationMinutes
52
caloriesBurned
279
intensity
medium
notes
performedAt
createdAt
userId
Lamont Huel @lamont.huel
kind
mixed
name
Power Workout
durationMinutes
44
caloriesBurned
521
intensity
very_high
notes
Ran out of time
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": 169,
      "userId": 68,
      "kind": "cardio",
      "name": "HIIT Circuit",
      "durationMinutes": 66,
      "caloriesBurned": 570,
      "intensity": "high",
      "notes": "",
      "performedAt": "2025-10-23T11:40:38.866Z",
      "createdAt": "2025-10-23T12:25:28.813Z"
    },
    {
      "id": 170,
      "userId": 68,
      "kind": "mixed",
      "name": "Intense Training",
      "durationMinutes": 81,
      "caloriesBurned": 559,
      "intensity": "medium",
      "notes": "Cardio felt easy",
      "performedAt": "2026-02-20T15:08:14.933Z",
      "createdAt": "2026-02-20T15:40:37.137Z"
    },
    {
      "id": 171,
      "userId": 68,
      "kind": "cardio",
      "name": "Intense Session",
      "durationMinutes": 48,
      "caloriesBurned": 253,
      "intensity": "medium",
      "notes": "Great pump",
      "performedAt": "2026-04-05T23:14:49.678Z",
      "createdAt": "2026-04-05T23:31:46.880Z"
    }
  ],
  "meta": {
    "page": 8,
    "limit": 24,
    "total": 620,
    "totalPages": 26
  },
  "links": {
    "self": "/api/v1/workouts?page=8",
    "next": "/api/v1/workouts?page=9",
    "prev": "/api/v1/workouts?page=7"
  }
}
Draftbit