example-data.com

workouts / #99

userId
Gwendolyn Wyman @gwendolyn.wyman87
kind
mixed
name
Recovery Challenge
durationMinutes
66
caloriesBurned
232
intensity
low
notes
Tough session but pushed through
performedAt
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/workouts/99"
)
workout = res.json()
{
  "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"
}
Draftbit