progress / #44
- userId
-
Marcelina Grady @marcelina_grady19
- courseId
- courses/66
- lessonId
- lessons/443
- state
- in_progress
- completedAt
- —
- updatedAt
- createdAt
Component variants
Medium
#44
#44
Small
progress/44 Related
curl -sS \
"https://example-data.com/api/v1/progress/44" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/progress/44"
);
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/44"
);
const progress = (await res.json()) as Progress;import requests
res = requests.get(
"https://example-data.com/api/v1/progress/44"
)
progres = res.json() {
"id": 44,
"userId": 241,
"courseId": 66,
"lessonId": 443,
"state": "in_progress",
"completedAt": null,
"updatedAt": "2026-01-06T10:37:04.492Z",
"createdAt": "2025-10-26T14:23:11.562Z"
}