progress / #156
- userId
-
Rosemary Krajcik @rosemary_krajcik
- courseId
- courses/25
- lessonId
- lessons/183
- state
- completed
- completedAt
- updatedAt
- createdAt
Component variants
Medium
#156
#156
Small
progress/156 Related
curl -sS \
"https://example-data.com/api/v1/progress/156" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/progress/156"
);
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/156"
);
const progress = (await res.json()) as Progress;import requests
res = requests.get(
"https://example-data.com/api/v1/progress/156"
)
progres = res.json() {
"id": 156,
"userId": 191,
"courseId": 25,
"lessonId": 183,
"state": "completed",
"completedAt": "2026-02-26T12:13:35.261Z",
"updatedAt": "2026-02-26T12:13:35.261Z",
"createdAt": "2026-02-16T10:58:04.875Z"
}