example-data.com

workouts

workouts

Page 5 of 10.

userId
Margaretta Barrows @margaretta_barrows41
kind
mixed
name
Evening Circuit
durationMinutes
42
caloriesBurned
373
intensity
high
notes
Great pump
performedAt
createdAt
userId
Gwendolyn Wyman @gwendolyn.wyman87
kind
sports
name
Core Session
durationMinutes
53
caloriesBurned
677
intensity
very_high
notes
Great pump
performedAt
createdAt
userId
Gwendolyn Wyman @gwendolyn.wyman87
kind
mixed
name
Recovery Challenge
durationMinutes
66
caloriesBurned
232
intensity
low
notes
Tough session but pushed through
performedAt
createdAt
userId
Gwendolyn Wyman @gwendolyn.wyman87
kind
sports
name
Power Circuit
durationMinutes
70
caloriesBurned
285
intensity
low
notes
performedAt
createdAt
userId
Gwendolyn Wyman @gwendolyn.wyman87
kind
flexibility
name
Intense Challenge
durationMinutes
55
caloriesBurned
290
intensity
medium
notes
Focused on form today
performedAt
createdAt
userId
Amely Daniel @amely_daniel
kind
sports
name
Weekend Blast
durationMinutes
83
caloriesBurned
348
intensity
low
notes
Should have gone heavier
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": 97,
      "userId": 39,
      "kind": "mixed",
      "name": "Evening Circuit",
      "durationMinutes": 42,
      "caloriesBurned": 373,
      "intensity": "high",
      "notes": "Great pump",
      "performedAt": "2026-02-03T13:49:28.438Z",
      "createdAt": "2026-02-03T14:03:24.774Z"
    },
    {
      "id": 98,
      "userId": 40,
      "kind": "sports",
      "name": "Core Session",
      "durationMinutes": 53,
      "caloriesBurned": 677,
      "intensity": "very_high",
      "notes": "Great pump",
      "performedAt": "2026-02-21T00:17:41.229Z",
      "createdAt": "2026-02-21T00:46:35.429Z"
    },
    {
      "id": 99,
      "userId": 40,
      "kind": "mixed",
      "name": "Recovery Challenge",
      "durationMinutes": 66,
      "caloriesBurned": 232,
      "intensity": "low",
      "notes": "Tough session but pushed through",
      "performedAt": "2026-05-11T02:51:39.370Z",
      "createdAt": "2026-05-11T03:01:40.295Z"
    }
  ],
  "meta": {
    "page": 5,
    "limit": 24,
    "total": 620,
    "totalPages": 26
  },
  "links": {
    "self": "/api/v1/workouts?page=5",
    "next": "/api/v1/workouts?page=6",
    "prev": "/api/v1/workouts?page=4"
  }
}
Draftbit