progress / #92
- userId
-
Maria Senger @maria.senger
- courseId
- courses/21
- lessonId
- lessons/156
- state
- completed
- completedAt
- updatedAt
- createdAt
Component variants
Medium
#92
#92
Small
progress/92 Related
References
curl -sS \
"https://example-data.com/api/v1/progress/92" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/progress/92"
);
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/92"
);
const progress = (await res.json()) as Progress;import requests
res = requests.get(
"https://example-data.com/api/v1/progress/92"
)
progres = res.json() {
"id": 92,
"userId": 120,
"courseId": 21,
"lessonId": 156,
"state": "completed",
"completedAt": "2026-05-13T21:24:44.504Z",
"updatedAt": "2026-05-13T21:24:44.504Z",
"createdAt": "2026-04-04T09:31:11.661Z"
}