example-data.com

progress / #7

userId
Ken Towne @ken.towne
courseId
courses/55
lessonId
lessons/375
state
completed
completedAt
updatedAt
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/progress/7"
)
progres = res.json()
{
  "id": 7,
  "userId": 248,
  "courseId": 55,
  "lessonId": 375,
  "state": "completed",
  "completedAt": "2026-05-10T04:29:36.571Z",
  "updatedAt": "2026-05-10T04:29:36.571Z",
  "createdAt": "2025-12-08T07:20:10.731Z"
}
Draftbit