example-data.com

workouts

workouts

Page 10 of 10.

userId
Pinkie Denesik @pinkie_denesik32
kind
strength
name
Morning Workout
durationMinutes
86
caloriesBurned
366
intensity
low
notes
performedAt
createdAt
userId
Pinkie Denesik @pinkie_denesik32
kind
strength
name
Lower Body Blast
durationMinutes
63
caloriesBurned
518
intensity
high
notes
Tough session but pushed through
performedAt
createdAt
userId
Mazie Douglas @mazie_douglas
kind
flexibility
name
HIIT Burn
durationMinutes
32
caloriesBurned
156
intensity
medium
notes
performedAt
createdAt
userId
Mazie Douglas @mazie_douglas
kind
sports
name
Quick Circuit
durationMinutes
65
caloriesBurned
710
intensity
very_high
notes
Focused on form today
performedAt
createdAt
userId
Mazie Douglas @mazie_douglas
kind
cardio
name
Recovery Workout
durationMinutes
55
caloriesBurned
605
intensity
very_high
notes
Cardio felt easy
performedAt
createdAt
userId
Myrl Pollich @myrl.pollich
kind
flexibility
name
Power Routine
durationMinutes
21
caloriesBurned
169
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": 217,
      "userId": 88,
      "kind": "strength",
      "name": "Morning Workout",
      "durationMinutes": 86,
      "caloriesBurned": 366,
      "intensity": "low",
      "notes": "",
      "performedAt": "2025-08-15T22:52:23.896Z",
      "createdAt": "2025-08-15T23:15:44.971Z"
    },
    {
      "id": 218,
      "userId": 88,
      "kind": "strength",
      "name": "Lower Body Blast",
      "durationMinutes": 63,
      "caloriesBurned": 518,
      "intensity": "high",
      "notes": "Tough session but pushed through",
      "performedAt": "2025-08-29T02:24:03.032Z",
      "createdAt": "2025-08-29T02:49:10.691Z"
    },
    {
      "id": 219,
      "userId": 89,
      "kind": "flexibility",
      "name": "HIIT Burn",
      "durationMinutes": 32,
      "caloriesBurned": 156,
      "intensity": "medium",
      "notes": "",
      "performedAt": "2025-05-22T08:52:10.082Z",
      "createdAt": "2025-05-22T09:39:50.957Z"
    }
  ],
  "meta": {
    "page": 10,
    "limit": 24,
    "total": 620,
    "totalPages": 26
  },
  "links": {
    "self": "/api/v1/workouts?page=10",
    "next": "/api/v1/workouts?page=11",
    "prev": "/api/v1/workouts?page=9"
  }
}
Draftbit