progress / #106
- userId
-
Audreanne Will @audreanne_will
- courseId
- courses/64
- lessonId
- lessons/426
- state
- completed
- completedAt
- updatedAt
- createdAt
Component variants
Medium
#106
#106
Small
progress/106 Related
References
curl -sS \
"https://example-data.com/api/v1/progress/106" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/progress/106"
);
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/106"
);
const progress = (await res.json()) as Progress;import requests
res = requests.get(
"https://example-data.com/api/v1/progress/106"
)
progres = res.json() {
"id": 106,
"userId": 127,
"courseId": 64,
"lessonId": 426,
"state": "completed",
"completedAt": "2026-05-16T13:29:48.756Z",
"updatedAt": "2026-05-16T13:29:48.756Z",
"createdAt": "2026-05-11T15:02:02.392Z"
}