progress #770
- userId
-
Jonathan Howe @jonathan_howe77
- courseId
- courses/8
- lessonId
- —
- state
- in_progress
- completedAt
- —
- updatedAt
- createdAt
Overview
progress / #770
#770
#770
Request
curl example
curl -sS \ "https://example-data.com/api/v1/progress/770" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/progress/770" ); 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/770"
);
const progress = (await res.json()) as Progress; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/progress/770"
)
progres = res.json() Response
{
"id": 770,
"userId": 150,
"courseId": 8,
"lessonId": null,
"state": "in_progress",
"completedAt": null,
"updatedAt": "2025-09-23T06:23:41.527Z",
"createdAt": "2025-08-19T05:48:27.757Z"
}