progress #294
- userId
-
Stephan Heller @stephan.heller
- courseId
- courses/14
- lessonId
- lessons/107
- state
- in_progress
- completedAt
- —
- updatedAt
- createdAt
Overview
progress / #294
#294
#294
Request
curl example
curl -sS \ "https://example-data.com/api/v1/progress/294" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/progress/294" ); const progress = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/progress.d.ts https://example-data.com/types/progress.d.ts
import type { Progress } from "./types/progress";
const res = await fetch(
"https://example-data.com/api/v1/progress/294"
);
const progress = (await res.json()) as Progress; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/progress/294"
)
progres = res.json() Response
{
"id": 294,
"userId": 82,
"courseId": 14,
"lessonId": 107,
"state": "in_progress",
"completedAt": null,
"updatedAt": "2025-11-07T03:53:29.602Z",
"createdAt": "2025-08-19T03:50:01.787Z"
}