progress / #17
- userId
-
Kariane Schmitt @kariane.schmitt97
- courseId
- courses/24
- lessonId
- lessons/179
- state
- completed
- completedAt
- updatedAt
- createdAt
Component variants
Medium
#17
#17
Small
progress/17 Related
curl -sS \
"https://example-data.com/api/v1/progress/17" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/progress/17"
);
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/17"
);
const progress = (await res.json()) as Progress;import requests
res = requests.get(
"https://example-data.com/api/v1/progress/17"
)
progres = res.json() {
"id": 17,
"userId": 32,
"courseId": 24,
"lessonId": 179,
"state": "completed",
"completedAt": "2026-05-20T04:50:47.726Z",
"updatedAt": "2026-05-20T04:50:47.726Z",
"createdAt": "2026-05-16T01:29:06.649Z"
}