example-data.com

progress / #120

userId
Joseph Nitzsche @joseph_nitzsche
courseId
courses/10
lessonId
lessons/77
state
in_progress
completedAt
updatedAt
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/progress/120"
)
progres = res.json()
{
  "id": 120,
  "userId": 196,
  "courseId": 10,
  "lessonId": 77,
  "state": "in_progress",
  "completedAt": null,
  "updatedAt": "2025-07-23T17:07:52.447Z",
  "createdAt": "2024-12-05T17:15:29.187Z"
}
Draftbit