example-data.com

progress / #154

userId
Selina Flatley @selina_flatley
courseId
courses/41
lessonId
lessons/279
state
in_progress
completedAt
updatedAt
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/progress/154"
)
progres = res.json()
{
  "id": 154,
  "userId": 193,
  "courseId": 41,
  "lessonId": 279,
  "state": "in_progress",
  "completedAt": null,
  "updatedAt": "2026-05-21T20:10:42.940Z",
  "createdAt": "2026-05-21T18:32:22.130Z"
}
Draftbit