example-data.com

workouts / #218

userId
Pinkie Denesik @pinkie_denesik32
kind
strength
name
Lower Body Blast
durationMinutes
63
caloriesBurned
518
intensity
high
notes
Tough session but pushed through
performedAt
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/workouts/218"
)
workout = res.json()
{
  "id": 218,
  "userId": 88,
  "kind": "strength",
  "name": "Lower Body Blast",
  "durationMinutes": 63,
  "caloriesBurned": 518,
  "intensity": "high",
  "notes": "Tough session but pushed through",
  "performedAt": "2025-08-29T02:24:03.032Z",
  "createdAt": "2025-08-29T02:49:10.691Z"
}
Draftbit