# GET /api/project-comments > Project Comments - List all Project Comments - **Endpoint:** `GET /api/project-comments` - **Group:** Project Comments - **Since:** v1.0.0 - **Defined in:** `RestApi/Controllers/ProjectCommentsController.php` ## Headers | Field | Type | Description | | --- | --- | --- | | `authtoken` | String | Authentication token, generated from admin area | ## Parameters | Field | Type | Required | Description | | --- | --- | --- | --- | | `project_id` | Number | no | Optional filter by project ID | ## Request example ```bash curl -X GET "https://yoursite.com/index.php/api/project-comments" \ -H "authtoken: YOUR_API_TOKEN" ``` ## Responses ### Success - Success-Response: ```json [ { "id": "1", "project_id": "1", "description": "Comment text", "created_by": "1" } ] ``` --- Part of the [REST API for RISE CRM](https://risecrm.themesic.com/apiguide/) documentation. Full page: https://risecrm.themesic.com/apiguide/project-comments/get-project-comments/