---
title: "List all projects"
method: GET
path: "/projects"
tags: ["Projects"]
---

# List all projects

`GET /projects`

## Query parameters

- `projectName` string — Filter projects by name
- `status` 'PLANNING' | 'ACTIVE' | 'COMPLETED' | 'ON_HOLD' — Status of the ongoing project's workflow
- `teamMembers` string — Filter projects by team member IDs according to `teamMembersFiltering`
- `teamMembersFiltering` 'ANY' | 'ALL' — If more than one ID is passed, return either projects with any of the team members (`ANY`) or with all of them (`ALL`)
- `budgetFrom` string — Minimum project budget amount
- `budgetTo` string — Maximum project budget amount

## Response `200`

Successful operation

- Project[]
  - `id` string, required
  - `name` string, required
  - `status` 'PLANNING' | 'ACTIVE' | 'COMPLETED' | 'ON_HOLD', required — Status of the ongoing project's workflow
  - `budget` number, required — Monetary value in EUR
  - `startDate` string, date, required
  - `endDate` string, date, required
  - `team` object[], required
    - `id` integer, required
    - `name` string, required
  - `manager` integer, required
  - `description` string, required

## Other responses

- `400` — Invalid projects search criteria
- `500` — An internal server error occurred.
- `503` — The service is temporarily unavailable. Maybe there is maintenance?

## Changes

- **2025-01-09** `a59b7402c514` — 3 breaking, 6 info
  - the `query` request parameter `status` was restricted to a list of enum values
  - the response property `code` became optional for the status `500`
  - the response property `code` became optional for the status `503`
  - added the new enum value `ACTIVE` to the `query` request parameter `status`
  - …5 more
- **2025-01-09** `29074eeb2bb5` — 2 info
  - added the non-success response with the status `500`
  - added the non-success response with the status `503`
- **2025-01-08** `1a6865d8341f` — 1 warning, 1 info
  - deleted the `query` request parameter `teamMembersMode`
  - added the new optional `query` request parameter `teamMembersFiltering`
- **2025-01-08** `a89fbdd6d63d` — 1 info
  - added the new optional `query` request parameter `teamMembersMode`
- **2025-01-07** `659ddbe31a58` — 5 breaking, 7 warning, 8 info
  - removed the enum value `ACTIVE` from the `query` request parameter `status`
  - removed the enum value `COMPLETED` from the `query` request parameter `status`
  - removed the enum value `ON_HOLD` from the `query` request parameter `status`
  - removed the enum value `PLANNING` from the `query` request parameter `status`
  - …16 more

[Change history](https://skmtc.dev/ducin-public/apis/itcorpo-api/changes/projects/get.md)

---

[API](https://skmtc.dev/ducin-public/apis/itcorpo-api.md) · [All operations](https://skmtc.dev/ducin-public/apis/itcorpo-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/ducin-public/itcorpo-api/revisions/2bb1ebc60ebd/schema)
