example-data.com

projects

projects

Page 3 of 4.

orgId
Pouros, Nikolaus and Donnelly
teamId
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
updatedAt
orgId
Flatley Group
teamId
teams/50
name
Design System
slug
flatley-group-design-system
description
Spoliatio conforto contego quas.
status
completed
startDate
2026-02-13
dueDate
ownerUserId
19
createdAt
updatedAt
orgId
Ratke - Kub
teamId
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
updatedAt
orgId
Ratke - Kub
teamId
teams/51
name
API Migration
slug
ratke-kub-api-migration
description
Custodia advenio statim doloremque circumvenio harum arbitro.
status
active
startDate
2025-10-21
dueDate
2026-10-28
ownerUserId
184
createdAt
updatedAt
orgId
Ratke - Kub
teamId
teams/53
name
Customer Portal
slug
ratke-kub-customer-portal
description
Totidem spoliatio voluptas vilis.
status
completed
startDate
2025-12-21
dueDate
ownerUserId
195
createdAt
updatedAt
orgId
Ratke - Kub
teamId
teams/53
name
Mobile App v2
slug
ratke-kub-mobile-app-v2
description
Cernuus deorsum sollers ut callide ventus creber amplexus.
status
completed
startDate
2025-09-06
dueDate
ownerUserId
64
createdAt
updatedAt

Showing first 6 of 24 on this page.

curl -sS \
  "https://example-data.com/api/v1/projects?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/projects?limit=25"
);
const { data, meta } = await res.json();
import type { Project, ListEnvelope } from "https://example-data.com/types/projects.d.ts";

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

res = requests.get(
    "https://example-data.com/api/v1/projects",
    params={"limit": 25},
)
data = res.json()
{
  "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",
    "next": "/api/v1/projects?page=4",
    "prev": "/api/v1/projects?page=2"
  }
}
Draftbit