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

# Get Project

> Returns a single project with its environments.

## Path parameters

<ParamField path="projectId" type="string" required>
  The project ID.
</ParamField>

## Response

Returns the project object with an `environments` array.

<RequestExample>
  ```bash theme={null}
  curl https://nest.feather.mupeni.dev/v1/projects/proj_01hx... \
    -H "Authorization: Bearer <server_key>"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "id": "proj_01hx...",
    "orgId": "org_01hx...",
    "name": "My App",
    "slug": "my-app",
    "createdAt": "2024-03-01T12:00:00.000Z",
    "environments": [
      { "id": "env_01hx...", "name": "Production", "slug": "production", "color": "#ef4444", "protected": false, "createdAt": "2024-03-01T12:00:00.000Z" }
    ]
  }
  ```

  ```json 404 theme={null}
  {
    "error": { "code": "RESOURCE_NOT_FOUND", "message": "Project not found." }
  }
  ```
</ResponseExample>
