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

# List Projects

`GET /api/v1/projects`

## Response `200`

Successful Response

- ProjectListResponse — Response for `GET /api/v1/projects`. No pagination at v1 — bounded by realistic project counts. The `truncated` flag flips if the server-side hard cap was reached; that's the signal to add cursor pagination here.
  - `items` Project[], required
    - `id` string, uuid, required
    - `name` string, required
    - `status` 'bidding' | 'in-progress' | 'won' | 'lost', required — Bid lifecycle states. Hyphenated 'in-progress' matches the enum on the DB side and the existing frontend ProjectStatus type. Do not rename to underscore — it would break the frontend bridge and the DB enum at the same time.
    - `can_write` boolean, required
    - `can_manage_sharing` boolean, required
    - `created_at` string, date-time, required
    - `updated_at` string, date-time, required
  - `truncated` boolean

## Other responses

- `4XX` — Client Error
- `5XX` — Server Error

---

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