progress / #30
- userId
-
Charity Crona @charity.crona12
- courseId
- courses/19
- lessonId
- lessons/141
- state
- in_progress
- completedAt
- —
- updatedAt
- createdAt
Component variants
Medium
#30
#30
Small
progress/30 Related
References
curl -sS \
"https://example-data.com/api/v1/progress/30" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/progress/30"
);
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/30"
);
const progress = (await res.json()) as Progress;import requests
res = requests.get(
"https://example-data.com/api/v1/progress/30"
)
progres = res.json() {
"id": 30,
"userId": 100,
"courseId": 19,
"lessonId": 141,
"state": "in_progress",
"completedAt": null,
"updatedAt": "2026-05-06T05:25:38.796Z",
"createdAt": "2026-04-03T05:24:36.272Z"
}