example-data.com
Menu
Browse docs and collections

Overview

progress / #123

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/progress/123" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/progress/123"
);
const progress = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/progress.d.ts https://example-data.com/types/progress.d.ts
import type { Progress } from "./types/progress";

const res = await fetch(
  "https://example-data.com/api/v1/progress/123"
);
const progress = (await res.json()) as Progress;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/progress/123"
)
progres = res.json()

Response

{
  "id": 123,
  "userId": 104,
  "courseId": 21,
  "lessonId": 157,
  "state": "not_started",
  "completedAt": null,
  "updatedAt": "2025-06-10T11:45:06.126Z",
  "createdAt": "2025-06-10T11:45:06.126Z"
}