progress #688
- userId
-
Oma Franecki-Johnson @oma.franecki-johnson
- courseId
- courses/59
- lessonId
- lessons/400
- state
- completed
- completedAt
- updatedAt
- createdAt
Overview
progress / #688
#688
#688
Request
curl example
curl -sS \ "https://example-data.com/api/v1/progress/688" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/progress/688" ); 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/688"
);
const progress = (await res.json()) as Progress; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/progress/688"
)
progres = res.json() Response
{
"id": 688,
"userId": 242,
"courseId": 59,
"lessonId": 400,
"state": "completed",
"completedAt": "2026-04-20T01:18:59.975Z",
"updatedAt": "2026-04-20T01:18:59.975Z",
"createdAt": "2025-08-10T03:57:24.649Z"
}