example-data.com

progress / #131

userId
Maymie Boehm @maymie.boehm90
courseId
courses/63
lessonId
state
completed
completedAt
updatedAt
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/progress/131"
)
progres = res.json()
{
  "id": 131,
  "userId": 48,
  "courseId": 63,
  "lessonId": null,
  "state": "completed",
  "completedAt": "2025-02-28T23:35:44.788Z",
  "updatedAt": "2025-02-28T23:35:44.788Z",
  "createdAt": "2025-01-07T21:58:49.709Z"
}
Draftbit