progress #253
- userId
-
Otho Nikolaus @otho.nikolaus99
- courseId
- courses/48
- lessonId
- lessons/325
- state
- completed
- completedAt
- updatedAt
- createdAt
Overview
progress / #253
#253
#253
Request
curl example
curl -sS \ "https://example-data.com/api/v1/progress/253" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/progress/253" ); 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/253"
);
const progress = (await res.json()) as Progress; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/progress/253"
)
progres = res.json() Response
{
"id": 253,
"userId": 209,
"courseId": 48,
"lessonId": 325,
"state": "completed",
"completedAt": "2026-05-11T21:58:21.043Z",
"updatedAt": "2026-05-11T21:58:21.043Z",
"createdAt": "2026-01-14T19:35:27.321Z"
}