---
title: "Get project by ID"
method: GET
path: "/projects/{id}"
tags: ["Projects"]
---

# Get project by ID

`GET /projects/{id}`

Retrieve detailed information about a specific project

## Path parameters

- `id` string, uuid, required

## Response `200`

Project details retrieved successfully

- object
  - `done` boolean, required — Indicates if the operation was successful
  - `body` object, nullable, required — Response data (type varies by endpoint, null if no data)
    - `id` string, uuid
    - `name` string
    - `key` string — Project key (e.g., "WEB")
    - `color_code` string — Project color in hex format
    - `status_id` string, uuid, nullable
    - `category_id` string, uuid, nullable
    - `folder_id` string, uuid, nullable
    - `start_date` string, date, nullable
    - `end_date` string, date, nullable
    - `created_at` string, date-time
    - `updated_at` string, date-time
  - `title` string, nullable — Optional response title
  - `message` string, nullable — Optional message (error message or success notification)

## Other responses

- `404` — Project not found

---

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