example-data.com

workouts

workouts

Page 7 of 10.

userId
Autumn Bartell @autumn.bartell95
kind
cardio
name
Morning Challenge
durationMinutes
20
caloriesBurned
189
intensity
high
notes
Cardio felt easy
performedAt
createdAt
userId
Lilla Koss @lilla.koss
kind
flexibility
name
Quick Circuit
durationMinutes
56
caloriesBurned
250
intensity
low
notes
Ran out of time
performedAt
createdAt
userId
Lilla Koss @lilla.koss
kind
cardio
name
Evening Blast
durationMinutes
16
caloriesBurned
150
intensity
high
notes
Great pump
performedAt
createdAt
userId
Merl Jenkins @merl.jenkins6
kind
mixed
name
Recovery Workout
durationMinutes
66
caloriesBurned
525
intensity
high
notes
Personal best on squats
performedAt
createdAt
userId
Merl Jenkins @merl.jenkins6
kind
flexibility
name
Lower Body Routine
durationMinutes
23
caloriesBurned
90
intensity
low
notes
performedAt
createdAt
userId
Merl Jenkins @merl.jenkins6
kind
cardio
name
Evening Routine
durationMinutes
63
caloriesBurned
613
intensity
high
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": 145,
      "userId": 58,
      "kind": "cardio",
      "name": "Morning Challenge",
      "durationMinutes": 20,
      "caloriesBurned": 189,
      "intensity": "high",
      "notes": "Cardio felt easy",
      "performedAt": "2026-04-10T21:16:57.676Z",
      "createdAt": "2026-04-10T22:07:47.136Z"
    },
    {
      "id": 146,
      "userId": 59,
      "kind": "flexibility",
      "name": "Quick Circuit",
      "durationMinutes": 56,
      "caloriesBurned": 250,
      "intensity": "low",
      "notes": "Ran out of time",
      "performedAt": "2025-06-18T21:16:48.690Z",
      "createdAt": "2025-06-18T21:53:55.380Z"
    },
    {
      "id": 147,
      "userId": 59,
      "kind": "cardio",
      "name": "Evening Blast",
      "durationMinutes": 16,
      "caloriesBurned": 150,
      "intensity": "high",
      "notes": "Great pump",
      "performedAt": "2025-10-24T02:18:44.907Z",
      "createdAt": "2025-10-24T03:18:43.679Z"
    }
  ],
  "meta": {
    "page": 7,
    "limit": 24,
    "total": 620,
    "totalPages": 26
  },
  "links": {
    "self": "/api/v1/workouts?page=7",
    "next": "/api/v1/workouts?page=8",
    "prev": "/api/v1/workouts?page=6"
  }
}
Draftbit