example-data.com
Menu
Browse docs and collections

projects

projects

Page 2 of 4.

Overview

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/projects?limit=25"
);
const { data, meta } = await res.json();

TypeScript example

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

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

Python example

import requests

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

Response

{
  "data": [
    {
      "id": 25,
      "orgId": 7,
      "teamId": 18,
      "name": "API Migration",
      "slug": "schimmel-jones-and-lind-api-migration",
      "description": "Vaco eaque victoria asperiores candidus error alii vos celebrer.",
      "status": "planning",
      "startDate": "2025-08-11",
      "dueDate": "2026-08-24",
      "ownerUserId": 16,
      "createdAt": "2026-02-27T22:32:54.299Z",
      "updatedAt": "2026-05-10T12:42:17.677Z"
    },
    {
      "id": 26,
      "orgId": 8,
      "teamId": 20,
      "name": "Reporting Module",
      "slug": "brekke-muller-reporting-module",
      "description": "Circumvenio spiritus ipsam corrupti triduana ipsa cunae aro.",
      "status": "completed",
      "startDate": "2025-12-12",
      "dueDate": "2026-07-14",
      "ownerUserId": 86,
      "createdAt": "2026-01-17T05:22:13.288Z",
      "updatedAt": "2026-01-23T05:26:48.029Z"
    },
    {
      "id": 27,
      "orgId": 9,
      "teamId": null,
      "name": "Dashboard Overhaul",
      "slug": "predovic-prosacco-and-o-hara-dashboard-overhaul",
      "description": "Tenus virtus coruscus odit advoco confido vicissitudo depraedor dedecor vitium.",
      "status": "active",
      "startDate": "2025-12-24",
      "dueDate": "2026-07-12",
      "ownerUserId": 249,
      "createdAt": "2025-10-28T02:44:54.864Z",
      "updatedAt": "2026-02-10T00:04:50.481Z"
    }
  ],
  "meta": {
    "page": 2,
    "limit": 24,
    "total": 85,
    "totalPages": 4
  },
  "links": {
    "self": "/api/v1/projects?page=2&limit=24",
    "first": "/api/v1/projects?page=1&limit=24",
    "last": "/api/v1/projects?page=4&limit=24",
    "next": "/api/v1/projects?page=3&limit=24",
    "prev": "/api/v1/projects?page=1&limit=24"
  }
}