example-data.com

workouts / #112

userId
Della Labadie @della_labadie
kind
strength
name
Lower Body Training
durationMinutes
64
caloriesBurned
329
intensity
medium
notes
Tough session but pushed through
performedAt
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/workouts/112"
)
workout = res.json()
{
  "id": 112,
  "userId": 46,
  "kind": "strength",
  "name": "Lower Body Training",
  "durationMinutes": 64,
  "caloriesBurned": 329,
  "intensity": "medium",
  "notes": "Tough session but pushed through",
  "performedAt": "2025-11-05T00:51:51.996Z",
  "createdAt": "2025-11-05T01:04:51.802Z"
}
Draftbit