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

# Get Project

> Get a single project by ID.

## Path Parameters

<ParamField path="id" type="string" required>
  Project ID.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl http://localhost:3000/api/v1/projects/clxyz456 \
    -H "Authorization: Bearer <token>"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "id": "clxyz456",
    "name": "My Project",
    "description": "A cool project",
    "ownerId": "clxyz123",
    "createdAt": "2026-03-18T01:00:00.000Z"
  }
  ```

  ```json 404 theme={null}
  {
    "statusCode": 404,
    "message": "Project not found",
    "error": "Not Found"
  }
  ```
</ResponseExample>
