example-data.com

workouts

workouts

Page 2 of 10.

userId
Anne Hamill @anne_hamill75
kind
sports
name
Endurance Circuit
durationMinutes
36
caloriesBurned
197
intensity
medium
notes
Felt strong today
performedAt
createdAt
userId
Anne Hamill @anne_hamill75
kind
strength
name
Full Routine
durationMinutes
31
caloriesBurned
220
intensity
medium
notes
Ran out of time
performedAt
createdAt
userId
Anne Hamill @anne_hamill75
kind
sports
name
Recovery Routine
durationMinutes
54
caloriesBurned
512
intensity
high
notes
Great pump
performedAt
createdAt
userId
Jaycee Erdman @jaycee_erdman96
kind
sports
name
Morning Routine
durationMinutes
72
caloriesBurned
431
intensity
medium
notes
Felt strong today
performedAt
createdAt
userId
Leonel Hamill @leonel_hamill33
kind
cardio
name
Morning Training
durationMinutes
30
caloriesBurned
268
intensity
high
notes
Tough session but pushed through
performedAt
createdAt
userId
Leonel Hamill @leonel_hamill33
kind
strength
name
Quick Blast
durationMinutes
32
caloriesBurned
329
intensity
high
notes
Needed more rest between sets
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": 25,
      "userId": 9,
      "kind": "sports",
      "name": "Endurance Circuit",
      "durationMinutes": 36,
      "caloriesBurned": 197,
      "intensity": "medium",
      "notes": "Felt strong today",
      "performedAt": "2026-01-02T01:54:10.616Z",
      "createdAt": "2026-01-02T02:00:51.824Z"
    },
    {
      "id": 26,
      "userId": 9,
      "kind": "strength",
      "name": "Full Routine",
      "durationMinutes": 31,
      "caloriesBurned": 220,
      "intensity": "medium",
      "notes": "Ran out of time",
      "performedAt": "2026-05-01T18:24:21.757Z",
      "createdAt": "2026-05-01T18:57:34.866Z"
    },
    {
      "id": 27,
      "userId": 9,
      "kind": "sports",
      "name": "Recovery Routine",
      "durationMinutes": 54,
      "caloriesBurned": 512,
      "intensity": "high",
      "notes": "Great pump",
      "performedAt": "2025-10-09T22:20:11.763Z",
      "createdAt": "2025-10-09T22:48:47.813Z"
    }
  ],
  "meta": {
    "page": 2,
    "limit": 24,
    "total": 620,
    "totalPages": 26
  },
  "links": {
    "self": "/api/v1/workouts?page=2",
    "next": "/api/v1/workouts?page=3",
    "prev": "/api/v1/workouts?page=1"
  }
}
Draftbit