example-data.com
Menu
Browse docs and collections

progress

progress

Browse 800 progress records. Explore sample records and fetch JSON over a free REST API for prototypes, tests, and learning.

Overview

Cards

Compact

Detailed

Showing first 6 of 24 on this page.

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/progress?limit=25"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/progress?limit=25"
);
const { data, meta } = 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, ListEnvelope } from "./types/progress";

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

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/progress",
    params={"limit": 25},
)
data = res.json()

Response

{
  "data": [
    {
      "id": 1,
      "userId": 160,
      "courseId": 74,
      "lessonId": null,
      "state": "not_started",
      "completedAt": null,
      "updatedAt": "2025-07-26T22:51:26.915Z",
      "createdAt": "2025-07-26T22:51:26.915Z"
    },
    {
      "id": 2,
      "userId": 37,
      "courseId": 61,
      "lessonId": 413,
      "state": "in_progress",
      "completedAt": null,
      "updatedAt": "2026-04-21T19:11:15.209Z",
      "createdAt": "2026-02-18T21:45:40.224Z"
    },
    {
      "id": 3,
      "userId": 145,
      "courseId": 9,
      "lessonId": null,
      "state": "not_started",
      "completedAt": null,
      "updatedAt": "2026-01-14T08:22:57.357Z",
      "createdAt": "2026-01-14T08:22:57.357Z"
    }
  ],
  "meta": {
    "page": 1,
    "limit": 25,
    "total": 800,
    "totalPages": 32
  },
  "links": {
    "self": "/api/v1/progress?page=1",
    "first": "/api/v1/progress?page=1",
    "last": "/api/v1/progress?page=32",
    "next": "/api/v1/progress?page=2",
    "prev": null
  }
}

View full response →