example-data.com
Menu
Browse docs and collections

Overview

workouts / #13

Upper Body Challenge

userId
Webster Skiles @webster_skiles39
kind
strength
name
Upper Body Challenge
durationMinutes
21
caloriesBurned
213
intensity
high
notes
Personal best on squats
performedAt
createdAt

Component variants

Related

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/workouts/13"
);
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/13"
);
const workout = (await res.json()) as Workout;

Python example

import requests

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

Response

{
  "id": 13,
  "userId": 5,
  "kind": "strength",
  "name": "Upper Body Challenge",
  "durationMinutes": 21,
  "caloriesBurned": 213,
  "intensity": "high",
  "notes": "Personal best on squats",
  "performedAt": "2026-01-05T15:54:31.976Z",
  "createdAt": "2026-01-05T16:23:25.849Z"
}