example-data.com

workouts / #213

userId
Michaela Feeney @michaela_feeney46
kind
strength
name
Upper Body Routine
durationMinutes
87
caloriesBurned
315
intensity
low
notes
Focused on form today
performedAt
createdAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/workouts/213" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/workouts/213"
);
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/213"
);
const workout = (await res.json()) as Workout;
import requests

res = requests.get(
    "https://example-data.com/api/v1/workouts/213"
)
workout = res.json()
{
  "id": 213,
  "userId": 87,
  "kind": "strength",
  "name": "Upper Body Routine",
  "durationMinutes": 87,
  "caloriesBurned": 315,
  "intensity": "low",
  "notes": "Focused on form today",
  "performedAt": "2025-06-25T10:21:52.527Z",
  "createdAt": "2025-06-25T11:11:31.569Z"
}
Draftbit