example-data.com

workouts / #13

userId
Webster Skiles @webster_skiles39
kind
strength
name
Upper Body Challenge
durationMinutes
21
caloriesBurned
213
intensity
high
notes
Personal best on squats
performedAt
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/workouts/13"
)
workout = res.json()
{
  "id": 13,
  "userId": 5,
  "kind": "strength",
  "name": "Upper Body Challenge",
  "durationMinutes": 21,
  "caloriesBurned": 213,
  "intensity": "high",
  "notes": "Personal best on squats",
  "performedAt": "2026-01-05T15:54:31.976Z",
  "createdAt": "2026-01-05T16:23:25.849Z"
}
Draftbit