example-data.com

progress / #228

userId
Alanna Kilback @alanna_kilback31
courseId
courses/57
lessonId
state
completed
completedAt
updatedAt
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/progress/228"
)
progres = res.json()
{
  "id": 228,
  "userId": 14,
  "courseId": 57,
  "lessonId": null,
  "state": "completed",
  "completedAt": "2026-05-18T13:39:11.791Z",
  "updatedAt": "2026-05-18T13:39:11.791Z",
  "createdAt": "2026-05-04T21:42:10.784Z"
}
Draftbit