example-data.com

progress / #127

userId
Elva Roberts @elva.roberts48
courseId
courses/61
lessonId
lessons/413
state
completed
completedAt
updatedAt
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/progress/127"
)
progres = res.json()
{
  "id": 127,
  "userId": 107,
  "courseId": 61,
  "lessonId": 413,
  "state": "completed",
  "completedAt": "2026-03-05T22:35:36.424Z",
  "updatedAt": "2026-03-05T22:35:36.424Z",
  "createdAt": "2026-01-16T23:20:30.883Z"
}
Draftbit