Full Challenge
- userId
-
Era Mitchell @era.mitchell21
- kind
- mixed
- name
- Full Challenge
- durationMinutes
- 16
- caloriesBurned
- 187
- intensity
- very_high
- notes
- Cardio felt easy
- performedAt
- createdAt
Overview
workouts / #598
Full Challenge
#598
Request
curl example
curl -sS \ "https://example-data.com/api/v1/workouts/598" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/workouts/598" ); 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/598"
);
const workout = (await res.json()) as Workout; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/598"
)
workout = res.json() Response
{
"id": 598,
"userId": 243,
"kind": "mixed",
"name": "Full Challenge",
"durationMinutes": 16,
"caloriesBurned": 187,
"intensity": "very_high",
"notes": "Cardio felt easy",
"performedAt": "2026-03-19T20:24:17.937Z",
"createdAt": "2026-03-19T21:20:14.323Z"
}