example-data.com

workouts

workouts

Page 6 of 10.

userId
Jolie Abernathy @jolie_abernathy33
kind
strength
name
Morning Session
durationMinutes
29
caloriesBurned
117
intensity
low
notes
Focused on form today
performedAt
createdAt
userId
Jolie Abernathy @jolie_abernathy33
kind
mixed
name
Intense Training
durationMinutes
28
caloriesBurned
128
intensity
low
notes
Tough session but pushed through
performedAt
createdAt
userId
Hermina West @hermina.west3
kind
flexibility
name
HIIT Burn
durationMinutes
84
caloriesBurned
870
intensity
high
notes
Tough session but pushed through
performedAt
createdAt
userId
Hermina West @hermina.west3
kind
strength
name
Full Training
durationMinutes
85
caloriesBurned
273
intensity
low
notes
performedAt
createdAt
userId
Hermina West @hermina.west3
kind
mixed
name
Full Burn
durationMinutes
56
caloriesBurned
666
intensity
very_high
notes
performedAt
createdAt
userId
Hermina West @hermina.west3
kind
cardio
name
Quick Circuit
durationMinutes
48
caloriesBurned
342
intensity
medium
notes
Personal best on squats
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": 121,
      "userId": 50,
      "kind": "strength",
      "name": "Morning Session",
      "durationMinutes": 29,
      "caloriesBurned": 117,
      "intensity": "low",
      "notes": "Focused on form today",
      "performedAt": "2025-11-08T12:56:39.551Z",
      "createdAt": "2025-11-08T13:07:19.054Z"
    },
    {
      "id": 122,
      "userId": 50,
      "kind": "mixed",
      "name": "Intense Training",
      "durationMinutes": 28,
      "caloriesBurned": 128,
      "intensity": "low",
      "notes": "Tough session but pushed through",
      "performedAt": "2025-07-07T05:14:08.466Z",
      "createdAt": "2025-07-07T05:40:49.284Z"
    },
    {
      "id": 123,
      "userId": 51,
      "kind": "flexibility",
      "name": "HIIT Burn",
      "durationMinutes": 84,
      "caloriesBurned": 870,
      "intensity": "high",
      "notes": "Tough session but pushed through",
      "performedAt": "2025-08-31T12:41:15.332Z",
      "createdAt": "2025-08-31T13:09:45.005Z"
    }
  ],
  "meta": {
    "page": 6,
    "limit": 24,
    "total": 620,
    "totalPages": 26
  },
  "links": {
    "self": "/api/v1/workouts?page=6",
    "next": "/api/v1/workouts?page=7",
    "prev": "/api/v1/workouts?page=5"
  }
}
Draftbit