example-data.com

progress / #151

userId
Karlee Hudson-Turner @karlee.hudson-turner88
courseId
courses/49
lessonId
lessons/334
state
in_progress
completedAt
updatedAt
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/progress/151"
)
progres = res.json()
{
  "id": 151,
  "userId": 36,
  "courseId": 49,
  "lessonId": 334,
  "state": "in_progress",
  "completedAt": null,
  "updatedAt": "2026-03-27T18:57:56.930Z",
  "createdAt": "2026-02-10T12:42:30.313Z"
}
Draftbit