Morning Challenge
- userId
-
Kevon Dickinson @kevon.dickinson
- kind
- sports
- name
- Morning Challenge
- durationMinutes
- 59
- caloriesBurned
- 690
- intensity
- very_high
- notes
- Tough session but pushed through
- performedAt
- createdAt
Overview
workouts / #534
Morning Challenge
#534
Request
curl example
curl -sS \ "https://example-data.com/api/v1/workouts/534" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/workouts/534" ); 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/534"
);
const workout = (await res.json()) as Workout; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/534"
)
workout = res.json() Response
{
"id": 534,
"userId": 218,
"kind": "sports",
"name": "Morning Challenge",
"durationMinutes": 59,
"caloriesBurned": 690,
"intensity": "very_high",
"notes": "Tough session but pushed through",
"performedAt": "2025-12-08T21:22:59.610Z",
"createdAt": "2025-12-08T21:57:47.023Z"
}