example-data.com

progress / #24

userId
Lamont Schroeder @lamont.schroeder89
courseId
courses/32
lessonId
state
completed
completedAt
updatedAt
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/progress/24"
)
progres = res.json()
{
  "id": 24,
  "userId": 180,
  "courseId": 32,
  "lessonId": null,
  "state": "completed",
  "completedAt": "2026-04-07T23:12:00.419Z",
  "updatedAt": "2026-04-07T23:12:00.419Z",
  "createdAt": "2025-04-19T19:06:15.957Z"
}
Draftbit