progress / #117
- userId
-
Diana Murazik @diana.murazik31
- courseId
- courses/43
- lessonId
- lessons/288
- state
- completed
- completedAt
- updatedAt
- createdAt
Component variants
Medium
#117
#117
Small
progress/117 Related
References
curl -sS \
"https://example-data.com/api/v1/progress/117" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/progress/117"
);
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/117"
);
const progress = (await res.json()) as Progress;import requests
res = requests.get(
"https://example-data.com/api/v1/progress/117"
)
progres = res.json() {
"id": 117,
"userId": 125,
"courseId": 43,
"lessonId": 288,
"state": "completed",
"completedAt": "2026-03-17T13:47:11.079Z",
"updatedAt": "2026-03-17T13:47:11.079Z",
"createdAt": "2025-11-07T05:40:48.283Z"
}