progress #699
- userId
-
Queen Lubowitz @queen.lubowitz76
- courseId
- courses/8
- lessonId
- lessons/57
- state
- in_progress
- completedAt
- —
- updatedAt
- createdAt
Overview
progress / #699
#699
#699
Request
curl example
curl -sS \ "https://example-data.com/api/v1/progress/699" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/progress/699" ); 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/699"
);
const progress = (await res.json()) as Progress; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/progress/699"
)
progres = res.json() Response
{
"id": 699,
"userId": 28,
"courseId": 8,
"lessonId": 57,
"state": "in_progress",
"completedAt": null,
"updatedAt": "2025-10-08T10:29:49.209Z",
"createdAt": "2025-08-25T11:21:45.283Z"
}