example-data.com

enrollments

enrollments

Page 10 of 10.

Showing first 6 of 24 on this page.

curl -sS \
  "https://example-data.com/api/v1/enrollments?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/enrollments?limit=25"
);
const { data, meta } = await res.json();
import type { Enrollment, ListEnvelope } from "https://example-data.com/types/enrollments.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/enrollments?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Enrollment>;
import requests

res = requests.get(
    "https://example-data.com/api/v1/enrollments",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "id": 217,
      "userId": 110,
      "courseId": 43,
      "enrolledAt": "2026-03-21T15:19:41.056Z",
      "completedAt": null,
      "progressPercent": 2,
      "createdAt": "2026-03-21T15:17:49.544Z"
    },
    {
      "id": 218,
      "userId": 111,
      "courseId": 74,
      "enrolledAt": "2025-08-18T11:04:01.275Z",
      "completedAt": null,
      "progressPercent": 37,
      "createdAt": "2025-08-18T11:02:16.751Z"
    },
    {
      "id": 219,
      "userId": 111,
      "courseId": 66,
      "enrolledAt": "2026-04-23T18:37:08.145Z",
      "completedAt": null,
      "progressPercent": 88,
      "createdAt": "2026-04-23T18:34:03.695Z"
    }
  ],
  "meta": {
    "page": 10,
    "limit": 24,
    "total": 501,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/enrollments?page=10",
    "next": "/api/v1/enrollments?page=11",
    "prev": "/api/v1/enrollments?page=9"
  }
}
Draftbit