progress / #37
- userId
-
Kevon Dickinson @kevon.dickinson
- courseId
- courses/56
- lessonId
- lessons/380
- state
- in_progress
- completedAt
- —
- updatedAt
- createdAt
Component variants
Medium
#37
#37
Small
progress/37 Related
curl -sS \
"https://example-data.com/api/v1/progress/37" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/progress/37"
);
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/37"
);
const progress = (await res.json()) as Progress;import requests
res = requests.get(
"https://example-data.com/api/v1/progress/37"
)
progres = res.json() {
"id": 37,
"userId": 218,
"courseId": 56,
"lessonId": 380,
"state": "in_progress",
"completedAt": null,
"updatedAt": "2025-12-07T07:43:19.035Z",
"createdAt": "2025-09-30T07:24:17.831Z"
}