example-data.com

progress / #62

userId
Fritz Skiles @fritz_skiles
courseId
courses/45
lessonId
lessons/307
state
in_progress
completedAt
updatedAt
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/progress/62"
)
progres = res.json()
{
  "id": 62,
  "userId": 144,
  "courseId": 45,
  "lessonId": 307,
  "state": "in_progress",
  "completedAt": null,
  "updatedAt": "2025-03-14T22:41:24.221Z",
  "createdAt": "2025-02-07T04:23:03.529Z"
}
Draftbit