example-data.com

workouts / #91

userId
Lenny Howe @lenny.howe
kind
strength
name
Lower Body Challenge
durationMinutes
57
caloriesBurned
412
intensity
high
notes
Focused on form today
performedAt
createdAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/workouts/91" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/workouts/91"
);
const workout = await res.json();
import type { Workout } from "https://example-data.com/types/workouts.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/workouts/91"
);
const workout = (await res.json()) as Workout;
import requests

res = requests.get(
    "https://example-data.com/api/v1/workouts/91"
)
workout = res.json()
{
  "id": 91,
  "userId": 37,
  "kind": "strength",
  "name": "Lower Body Challenge",
  "durationMinutes": 57,
  "caloriesBurned": 412,
  "intensity": "high",
  "notes": "Focused on form today",
  "performedAt": "2026-01-22T22:50:04.022Z",
  "createdAt": "2026-01-22T23:26:37.099Z"
}
Draftbit