progress / #82
- userId
-
Orrin Grant @orrin.grant42
- courseId
- courses/74
- lessonId
- —
- state
- completed
- completedAt
- updatedAt
- createdAt
Component variants
Medium
#82
#82
Small
progress/82 Related
References
curl -sS \
"https://example-data.com/api/v1/progress/82" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/progress/82"
);
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/82"
);
const progress = (await res.json()) as Progress;import requests
res = requests.get(
"https://example-data.com/api/v1/progress/82"
)
progres = res.json() {
"id": 82,
"userId": 152,
"courseId": 74,
"lessonId": null,
"state": "completed",
"completedAt": "2026-01-05T18:46:44.915Z",
"updatedAt": "2026-01-05T18:46:44.915Z",
"createdAt": "2025-12-01T08:03:43.575Z"
}