progress #352
- userId
-
Elvis Littel-Vandervort @elvis.littel-vandervort28
- courseId
- courses/48
- lessonId
- lessons/327
- state
- not_started
- completedAt
- —
- updatedAt
- createdAt
Overview
progress / #352
#352
#352
Request
curl example
curl -sS \ "https://example-data.com/api/v1/progress/352" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/progress/352" ); 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/352"
);
const progress = (await res.json()) as Progress; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/progress/352"
)
progres = res.json() Response
{
"id": 352,
"userId": 175,
"courseId": 48,
"lessonId": 327,
"state": "not_started",
"completedAt": null,
"updatedAt": "2026-03-24T12:18:33.295Z",
"createdAt": "2026-03-24T12:18:33.295Z"
}