progress #260
- userId
-
Van Crona @van_crona
- courseId
- courses/19
- lessonId
- lessons/140
- state
- in_progress
- completedAt
- —
- updatedAt
- createdAt
Overview
progress / #260
#260
#260
Request
curl example
curl -sS \ "https://example-data.com/api/v1/progress/260" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/progress/260" ); 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/260"
);
const progress = (await res.json()) as Progress; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/progress/260"
)
progres = res.json() Response
{
"id": 260,
"userId": 185,
"courseId": 19,
"lessonId": 140,
"state": "in_progress",
"completedAt": null,
"updatedAt": "2026-04-29T08:32:22.632Z",
"createdAt": "2026-04-28T10:53:23.591Z"
}