example-data.com

enrollments

enrollments

Page 9 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": 193,
      "userId": 96,
      "courseId": 41,
      "enrolledAt": "2026-05-13T23:10:48.457Z",
      "completedAt": null,
      "progressPercent": 82,
      "createdAt": "2026-05-13T23:06:02.541Z"
    },
    {
      "id": 194,
      "userId": 97,
      "courseId": 52,
      "enrolledAt": "2025-09-11T01:40:51.863Z",
      "completedAt": null,
      "progressPercent": 64,
      "createdAt": "2025-09-11T01:37:05.165Z"
    },
    {
      "id": 195,
      "userId": 97,
      "courseId": 66,
      "enrolledAt": "2025-12-27T18:29:02.271Z",
      "completedAt": null,
      "progressPercent": 31,
      "createdAt": "2025-12-27T18:24:41.845Z"
    }
  ],
  "meta": {
    "page": 9,
    "limit": 24,
    "total": 501,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/enrollments?page=9",
    "next": "/api/v1/enrollments?page=10",
    "prev": "/api/v1/enrollments?page=8"
  }
}
Draftbit