example-data.com

progress / #233

userId
Vida Kunde-Koepp @vida_kunde-koepp95
courseId
courses/56
lessonId
state
completed
completedAt
updatedAt
createdAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/progress/233" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/progress/233"
);
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/233"
);
const progress = (await res.json()) as Progress;
import requests

res = requests.get(
    "https://example-data.com/api/v1/progress/233"
)
progres = res.json()
{
  "id": 233,
  "userId": 109,
  "courseId": 56,
  "lessonId": null,
  "state": "completed",
  "completedAt": "2025-12-30T18:05:16.434Z",
  "updatedAt": "2025-12-30T18:05:16.434Z",
  "createdAt": "2025-09-25T05:18:36.757Z"
}
Draftbit