progress / #183
- userId
-
Sheridan Turcotte @sheridan.turcotte
- courseId
- courses/46
- lessonId
- lessons/314
- state
- completed
- completedAt
- updatedAt
- createdAt
Component variants
Medium
#183
#183
Small
progress/183 Related
curl -sS \
"https://example-data.com/api/v1/progress/183" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/progress/183"
);
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/183"
);
const progress = (await res.json()) as Progress;import requests
res = requests.get(
"https://example-data.com/api/v1/progress/183"
)
progres = res.json() {
"id": 183,
"userId": 153,
"courseId": 46,
"lessonId": 314,
"state": "completed",
"completedAt": "2026-04-24T10:35:02.222Z",
"updatedAt": "2026-04-24T10:35:02.222Z",
"createdAt": "2026-04-09T03:32:55.622Z"
}