progress #791
- userId
-
Jamaal Rolfson @jamaal_rolfson
- courseId
- courses/27
- lessonId
- lessons/191
- state
- completed
- completedAt
- updatedAt
- createdAt
Overview
progress / #791
#791
#791
Request
curl example
curl -sS \ "https://example-data.com/api/v1/progress/791" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/progress/791" ); const progress = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/progress.d.ts https://example-data.com/types/progress.d.ts
import type { Progress } from "./types/progress";
const res = await fetch(
"https://example-data.com/api/v1/progress/791"
);
const progress = (await res.json()) as Progress; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/progress/791"
)
progres = res.json() Response
{
"id": 791,
"userId": 207,
"courseId": 27,
"lessonId": 191,
"state": "completed",
"completedAt": "2025-03-24T00:16:23.786Z",
"updatedAt": "2025-03-24T00:16:23.786Z",
"createdAt": "2024-12-22T18:29:41.902Z"
}