example-data.com

progress / #139

userId
Lamont Schroeder @lamont.schroeder89
courseId
courses/45
lessonId
lessons/301
state
completed
completedAt
updatedAt
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/progress/139"
)
progres = res.json()
{
  "id": 139,
  "userId": 180,
  "courseId": 45,
  "lessonId": 301,
  "state": "completed",
  "completedAt": "2026-05-21T21:52:13.271Z",
  "updatedAt": "2026-05-21T21:52:13.271Z",
  "createdAt": "2026-05-20T19:46:05.043Z"
}
Draftbit