example-data.com

progress / #167

userId
Roberta Mueller-Yundt @roberta_mueller-yundt
courseId
courses/13
lessonId
lessons/93
state
completed
completedAt
updatedAt
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/progress/167"
)
progres = res.json()
{
  "id": 167,
  "userId": 162,
  "courseId": 13,
  "lessonId": 93,
  "state": "completed",
  "completedAt": "2026-04-17T01:07:13.919Z",
  "updatedAt": "2026-04-17T01:07:13.919Z",
  "createdAt": "2026-02-16T20:48:47.258Z"
}
Draftbit