example-data.com

workouts

workouts

Page 3 of 10.

userId
Melba Collier @melba.collier
kind
cardio
name
Recovery Challenge
durationMinutes
78
caloriesBurned
757
intensity
high
notes
performedAt
createdAt
userId
Melba Collier @melba.collier
kind
flexibility
name
Weekend Routine
durationMinutes
49
caloriesBurned
235
intensity
low
notes
Did extra sets
performedAt
createdAt
userId
Melba Collier @melba.collier
kind
strength
name
Evening Challenge
durationMinutes
82
caloriesBurned
640
intensity
high
notes
Did extra sets
performedAt
createdAt
userId
Alvina Koch @alvina.koch8
kind
cardio
name
Evening Workout
durationMinutes
66
caloriesBurned
450
intensity
medium
notes
Cardio felt easy
performedAt
createdAt
userId
Guy Christiansen @guy.christiansen40
kind
flexibility
name
Morning Challenge
durationMinutes
90
caloriesBurned
888
intensity
very_high
notes
Cardio felt easy
performedAt
createdAt
userId
Guy Christiansen @guy.christiansen40
kind
strength
name
Evening Circuit
durationMinutes
86
caloriesBurned
562
intensity
medium
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": 49,
      "userId": 19,
      "kind": "cardio",
      "name": "Recovery Challenge",
      "durationMinutes": 78,
      "caloriesBurned": 757,
      "intensity": "high",
      "notes": "",
      "performedAt": "2025-09-28T22:55:21.316Z",
      "createdAt": "2025-09-28T23:54:44.405Z"
    },
    {
      "id": 50,
      "userId": 19,
      "kind": "flexibility",
      "name": "Weekend Routine",
      "durationMinutes": 49,
      "caloriesBurned": 235,
      "intensity": "low",
      "notes": "Did extra sets",
      "performedAt": "2025-05-29T12:41:35.838Z",
      "createdAt": "2025-05-29T13:26:57.005Z"
    },
    {
      "id": 51,
      "userId": 19,
      "kind": "strength",
      "name": "Evening Challenge",
      "durationMinutes": 82,
      "caloriesBurned": 640,
      "intensity": "high",
      "notes": "Did extra sets",
      "performedAt": "2026-02-12T23:08:18.989Z",
      "createdAt": "2026-02-13T00:04:12.866Z"
    }
  ],
  "meta": {
    "page": 3,
    "limit": 24,
    "total": 620,
    "totalPages": 26
  },
  "links": {
    "self": "/api/v1/workouts?page=3",
    "next": "/api/v1/workouts?page=4",
    "prev": "/api/v1/workouts?page=2"
  }
}
Draftbit