example-data.com

enrollments

enrollments

Page 7 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": 145,
      "userId": 72,
      "courseId": 13,
      "enrolledAt": "2026-04-15T21:24:56.572Z",
      "completedAt": null,
      "progressPercent": 86,
      "createdAt": "2026-04-15T21:22:15.275Z"
    },
    {
      "id": 146,
      "userId": 72,
      "courseId": 28,
      "enrolledAt": "2025-08-29T00:06:58.861Z",
      "completedAt": null,
      "progressPercent": 47,
      "createdAt": "2025-08-29T00:04:29.614Z"
    },
    {
      "id": 147,
      "userId": 73,
      "courseId": 35,
      "enrolledAt": "2025-12-26T12:00:48.812Z",
      "completedAt": null,
      "progressPercent": 41,
      "createdAt": "2025-12-26T11:58:57.777Z"
    }
  ],
  "meta": {
    "page": 7,
    "limit": 24,
    "total": 501,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/enrollments?page=7",
    "next": "/api/v1/enrollments?page=8",
    "prev": "/api/v1/enrollments?page=6"
  }
}
Draftbit