example-data.com

progress / #209

userId
Theresia Collins @theresia_collins86
courseId
courses/15
lessonId
lessons/114
state
completed
completedAt
updatedAt
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/progress/209"
)
progres = res.json()
{
  "id": 209,
  "userId": 63,
  "courseId": 15,
  "lessonId": 114,
  "state": "completed",
  "completedAt": "2026-03-07T16:53:33.763Z",
  "updatedAt": "2026-03-07T16:53:33.763Z",
  "createdAt": "2025-06-08T01:51:24.400Z"
}
Draftbit