Full Challenge
- userId
-
Wallace Batz @wallace_batz
- kind
- flexibility
- name
- Full Challenge
- durationMinutes
- 62
- caloriesBurned
- 879
- intensity
- very_high
- notes
- Should have gone heavier
- performedAt
- createdAt
Overview
workouts / #563
Full Challenge
#563
Request
curl example
curl -sS \ "https://example-data.com/api/v1/workouts/563" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/workouts/563" ); 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/563"
);
const workout = (await res.json()) as Workout; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/workouts/563"
)
workout = res.json() Response
{
"id": 563,
"userId": 229,
"kind": "flexibility",
"name": "Full Challenge",
"durationMinutes": 62,
"caloriesBurned": 879,
"intensity": "very_high",
"notes": "Should have gone heavier",
"performedAt": "2026-05-20T19:54:21.443Z",
"createdAt": "2026-05-20T20:04:50.854Z"
}