example-data.com
Menu
Browse docs and collections

projects

projects

Page 4 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": 73,
      "orgId": 25,
      "teamId": 80,
      "name": "CI/CD Pipeline",
      "slug": "maggio-and-sons-ci-cd-pipeline",
      "description": "Taedium curo non crebro voluntarius.",
      "status": "on_hold",
      "startDate": "2026-01-27",
      "dueDate": null,
      "ownerUserId": 54,
      "createdAt": "2026-02-06T11:53:24.594Z",
      "updatedAt": "2026-03-13T13:00:46.374Z"
    },
    {
      "id": 74,
      "orgId": 25,
      "teamId": 80,
      "name": "Data Pipeline",
      "slug": "maggio-and-sons-data-pipeline",
      "description": "Coma vitae depulso alius calculus speculum alienus arcus comparo.",
      "status": "archived",
      "startDate": "2025-10-29",
      "dueDate": "2026-10-17",
      "ownerUserId": 159,
      "createdAt": "2025-10-24T15:04:26.482Z",
      "updatedAt": "2025-10-30T22:38:19.806Z"
    },
    {
      "id": 75,
      "orgId": 25,
      "teamId": 80,
      "name": "Dashboard Overhaul",
      "slug": "maggio-and-sons-dashboard-overhaul",
      "description": "Clementia aptus quas nisi.",
      "status": "planning",
      "startDate": "2026-05-02",
      "dueDate": "2026-11-05",
      "ownerUserId": 237,
      "createdAt": "2025-10-28T01:27:42.386Z",
      "updatedAt": "2026-03-27T06:39:57.537Z"
    }
  ],
  "meta": {
    "page": 4,
    "limit": 24,
    "total": 85,
    "totalPages": 4
  },
  "links": {
    "self": "/api/v1/projects?page=4&limit=24",
    "first": "/api/v1/projects?page=1&limit=24",
    "last": "/api/v1/projects?page=4&limit=24",
    "next": null,
    "prev": "/api/v1/projects?page=3&limit=24"
  }
}