example-data.com

progress / #42

userId
Brad Wisoky @brad.wisoky41
courseId
courses/2
lessonId
state
in_progress
completedAt
updatedAt
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/progress/42"
)
progres = res.json()
{
  "id": 42,
  "userId": 154,
  "courseId": 2,
  "lessonId": null,
  "state": "in_progress",
  "completedAt": null,
  "updatedAt": "2025-03-08T07:29:26.142Z",
  "createdAt": "2024-12-15T02:24:22.792Z"
}
Draftbit