example-data.com
Menu
Browse docs and collections

Overview

workouts / #91

Lower Body Challenge

userId
Lenny Howe @lenny.howe
kind
strength
name
Lower Body Challenge
durationMinutes
57
caloriesBurned
412
intensity
high
notes
Focused on form today
performedAt
createdAt

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/workouts/91" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/workouts/91"
);
const workout = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/workouts.d.ts https://example-data.com/types/workouts.d.ts
import type { Workout } from "./types/workouts";

const res = await fetch(
  "https://example-data.com/api/v1/workouts/91"
);
const workout = (await res.json()) as Workout;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/workouts/91"
)
workout = res.json()

Response

{
  "id": 91,
  "userId": 37,
  "kind": "strength",
  "name": "Lower Body Challenge",
  "durationMinutes": 57,
  "caloriesBurned": 412,
  "intensity": "high",
  "notes": "Focused on form today",
  "performedAt": "2026-01-22T22:50:04.022Z",
  "createdAt": "2026-01-22T23:26:37.099Z"
}