example-data.com

workouts / #160

userId
Theresia Collins @theresia_collins86
kind
strength
name
Evening Blast
durationMinutes
89
caloriesBurned
805
intensity
high
notes
Tough session but pushed through
performedAt
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/workouts/160"
)
workout = res.json()
{
  "id": 160,
  "userId": 63,
  "kind": "strength",
  "name": "Evening Blast",
  "durationMinutes": 89,
  "caloriesBurned": 805,
  "intensity": "high",
  "notes": "Tough session but pushed through",
  "performedAt": "2026-02-07T14:17:22.412Z",
  "createdAt": "2026-02-07T15:09:25.871Z"
}
Draftbit