progress / #202
- userId
-
Margaretta Barrows @margaretta_barrows41
- courseId
- courses/51
- lessonId
- —
- state
- completed
- completedAt
- updatedAt
- createdAt
Component variants
Medium
#202
#202
Small
progress/202 Related
curl -sS \
"https://example-data.com/api/v1/progress/202" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/progress/202"
);
const progress = await res.json();import type { Progress } from "https://example-data.com/types/progress.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/progress/202"
);
const progress = (await res.json()) as Progress;import requests
res = requests.get(
"https://example-data.com/api/v1/progress/202"
)
progres = res.json() {
"id": 202,
"userId": 39,
"courseId": 51,
"lessonId": null,
"state": "completed",
"completedAt": "2026-05-04T14:17:52.116Z",
"updatedAt": "2026-05-04T14:17:52.116Z",
"createdAt": "2025-09-23T06:18:05.049Z"
}