example-data.com

progress / #164

userId
Americo Hoppe @americo_hoppe57
courseId
courses/26
lessonId
lessons/187
state
in_progress
completedAt
updatedAt
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/progress/164"
)
progres = res.json()
{
  "id": 164,
  "userId": 177,
  "courseId": 26,
  "lessonId": 187,
  "state": "in_progress",
  "completedAt": null,
  "updatedAt": "2025-12-13T22:25:09.462Z",
  "createdAt": "2025-06-01T19:00:01.714Z"
}
Draftbit