example-data.com

workouts / #191

userId
Berniece Medhurst @berniece_medhurst
kind
flexibility
name
Recovery Challenge
durationMinutes
25
caloriesBurned
209
intensity
high
notes
Cardio felt easy
performedAt
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/workouts/191"
)
workout = res.json()
{
  "id": 191,
  "userId": 77,
  "kind": "flexibility",
  "name": "Recovery Challenge",
  "durationMinutes": 25,
  "caloriesBurned": 209,
  "intensity": "high",
  "notes": "Cardio felt easy",
  "performedAt": "2025-07-12T15:38:12.006Z",
  "createdAt": "2025-07-12T15:41:29.453Z"
}
Draftbit