example-data.com
Menu
Browse docs and collections

projects

projects

Page 3 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": 49,
      "orgId": 16,
      "teamId": null,
      "name": "Notification Service",
      "slug": "pouros-nikolaus-and-donnelly-notification-service",
      "description": "Tactus virga creator abundans vere advenio decet.",
      "status": "on_hold",
      "startDate": "2025-07-08",
      "dueDate": "2026-11-09",
      "ownerUserId": 210,
      "createdAt": "2026-03-27T00:23:14.968Z",
      "updatedAt": "2026-04-10T08:52:23.925Z"
    },
    {
      "id": 50,
      "orgId": 17,
      "teamId": 50,
      "name": "Design System",
      "slug": "flatley-group-design-system",
      "description": "Spoliatio conforto contego quas.",
      "status": "completed",
      "startDate": "2026-02-13",
      "dueDate": null,
      "ownerUserId": 19,
      "createdAt": "2025-11-17T10:40:43.953Z",
      "updatedAt": "2026-01-17T01:11:12.386Z"
    },
    {
      "id": 51,
      "orgId": 18,
      "teamId": null,
      "name": "Design System",
      "slug": "ratke-kub-design-system",
      "description": "Uter caute combibo defluo cavus animi venio.",
      "status": "planning",
      "startDate": "2025-11-03",
      "dueDate": "2026-10-07",
      "ownerUserId": 14,
      "createdAt": "2026-04-29T15:30:09.597Z",
      "updatedAt": "2026-05-13T14:37:05.195Z"
    }
  ],
  "meta": {
    "page": 3,
    "limit": 24,
    "total": 85,
    "totalPages": 4
  },
  "links": {
    "self": "/api/v1/projects?page=3&limit=24",
    "first": "/api/v1/projects?page=1&limit=24",
    "last": "/api/v1/projects?page=4&limit=24",
    "next": "/api/v1/projects?page=4&limit=24",
    "prev": "/api/v1/projects?page=2&limit=24"
  }
}