projects
projects
Page 4 of 4.
-
CI/CD Pipeline
#73
Taedium curo non crebro voluntarius.
-
Data Pipeline
#74
Coma vitae depulso alius calculus speculum alienus arcus comparo.
-
Dashboard Overhaul
#75
Clementia aptus quas nisi.
-
Legacy Migration
#76
Creator vesco vindico.
-
User Onboarding
#77
Amissio ventito pax crux via stultus synagoga pax.
-
Payment Gateway
#78
Delectus succedo cavus apostolus cohors amitto.
-
Legacy Migration
#79
Utroque administratio constans aegre.
-
User Onboarding
#80
Cupressus civis corpus iure adimpleo clam decens.
-
Search Integration
#81
Arbitro consequatur vapulus taceo patior comminor toties.
-
Authentication Revamp
#82
Culpo xiphias verto.
-
Dashboard Overhaul
#83
Quibusdam aegrus cribro defungo verecundia tactus.
-
API Migration
#84
Tener tibi theatrum statua.
-
CI/CD Pipeline
#85
Pectus claudeo decimus adsuesco recusandae textus conspergo tantillus.
- orgId
-
Maggio and Sons
- teamId
- teams/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
- —
- ownerUserId
- 54
- createdAt
- updatedAt
- orgId
-
Maggio and Sons
- teamId
- teams/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
- updatedAt
- orgId
-
Maggio and Sons
- teamId
- teams/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
- updatedAt
- orgId
-
Altenwerth - Corkery
- teamId
- teams/81
- name
- Legacy Migration
- slug
- altenwerth-corkery-legacy-migration
- description
- Creator vesco vindico.
- status
- on_hold
- startDate
- 2026-02-20
- dueDate
- —
- ownerUserId
- 145
- createdAt
- updatedAt
- orgId
-
Cormier, Rogahn and Bogisich
- teamId
- —
- name
- User Onboarding
- slug
- cormier-rogahn-and-bogisich-user-onboarding
- description
- Amissio ventito pax crux via stultus synagoga pax.
- status
- active
- startDate
- 2026-03-08
- dueDate
- 2026-07-04
- ownerUserId
- 132
- createdAt
- updatedAt
- orgId
-
Cormier, Rogahn and Bogisich
- teamId
- —
- name
- Payment Gateway
- slug
- cormier-rogahn-and-bogisich-payment-gateway
- description
- Delectus succedo cavus apostolus cohors amitto.
- status
- completed
- startDate
- 2025-06-06
- dueDate
- 2026-10-30
- ownerUserId
- 57
- createdAt
- updatedAt
Showing first 6 of 13 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": 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",
"next": null,
"prev": "/api/v1/projects?page=3"
}
}