progress #612
- userId
-
Matt Kuhic @matt_kuhic57
- courseId
- courses/65
- lessonId
- —
- state
- in_progress
- completedAt
- —
- updatedAt
- createdAt
Overview
progress / #612
#612
#612
Request
curl example
curl -sS \ "https://example-data.com/api/v1/progress/612" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/progress/612" ); 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/612"
);
const progress = (await res.json()) as Progress; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/progress/612"
)
progres = res.json() Response
{
"id": 612,
"userId": 226,
"courseId": 65,
"lessonId": null,
"state": "in_progress",
"completedAt": null,
"updatedAt": "2025-09-16T15:09:58.677Z",
"createdAt": "2025-08-03T05:42:04.764Z"
}