> ## Documentation Index
> Fetch the complete documentation index at: https://docs.shiftsheet.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Project

> Retrieve detailed information about a specific project.

This includes all active employee assignments and their roles on the project.

### Path Parameters

<ParamField path="id" type="string" required>
  The unique identifier of the project.
</ParamField>

### Response

<ResponseExample>
  ```json theme={null}
  {
    "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",
      "assignments": [
        {
          "userId": "usr_789...",
          "role": "Lead Developer"
        }
      ]
    }
  }
  ```
</ResponseExample>
