Skip to main content
GET
/
api
/
public
/
v1
/
projects
List Projects
curl --request GET \
  --url https://api.example.com/api/public/v1/projects
{
  "data": [
    {
      "id": "proj_123...",
      "name": "Website Redesign",
      "code": "WEB-26",
      "description": "Complete overhaul of the marketing site",
      "status": "ACTIVE",
      "startDate": "2026-01-01T00:00:00.000Z",
      "endDate": "2026-06-30T00:00:00.000Z",
      "createdAt": "2026-01-01T00:00:00.000Z",
      "updatedAt": "2026-05-18T00:00:00.000Z"
    }
  ]
}
This is commonly used to sync active projects into external tools like Jira, Trello, or invoicing systems.

Query Parameters

status
string
Filter projects by their status (e.g., PROPOSED, ACTIVE, ON_HOLD, COMPLETED, CANCELLED).

Response

{
  "data": [
    {
      "id": "proj_123...",
      "name": "Website Redesign",
      "code": "WEB-26",
      "description": "Complete overhaul of the marketing site",
      "status": "ACTIVE",
      "startDate": "2026-01-01T00:00:00.000Z",
      "endDate": "2026-06-30T00:00:00.000Z",
      "createdAt": "2026-01-01T00:00:00.000Z",
      "updatedAt": "2026-05-18T00:00:00.000Z"
    }
  ]
}