progress / #12
- userId
-
Gudrun Brakus @gudrun_brakus
- courseId
- courses/14
- lessonId
- lessons/106
- state
- in_progress
- completedAt
- —
- updatedAt
- createdAt
Component variants
Medium
#12
#12
Small
progress/12 Related
References
curl -sS \
"https://example-data.com/api/v1/progress/12" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/progress/12"
);
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/12"
);
const progress = (await res.json()) as Progress;import requests
res = requests.get(
"https://example-data.com/api/v1/progress/12"
)
progres = res.json() {
"id": 12,
"userId": 230,
"courseId": 14,
"lessonId": 106,
"state": "in_progress",
"completedAt": null,
"updatedAt": "2026-05-10T16:38:54.461Z",
"createdAt": "2025-07-11T09:57:25.884Z"
}