# GET /api/proposal-comments/search/{keyword} > Proposal Comments - Search Proposal Comments - **Endpoint:** `GET /api/proposal-comments/search/{keyword}` - **Group:** Proposal Comments - **Since:** v1.0.0 - **Defined in:** `RestApi/Controllers/ProposalCommentsController.php` ## Headers | Field | Type | Description | | --- | --- | --- | | `authtoken` | String | Authentication token, generated from admin area | ## Parameters | Field | Type | Required | Description | | --- | --- | --- | --- | | `keyword` | String | yes | Search keywords, matched against the comment text | ## Request example ```bash curl -X GET "https://yoursite.com/index.php/api/proposal-comments/search/acme" \ -H "authtoken: YOUR_API_TOKEN" ``` ## Responses ### Success - Success-Response: ```json [ { "id": "1", "description": "Comment text" } ] ``` ### Error - Error-Response: ```json HTTP/1.1 404 Not Found { "status": false, "messages": { "error": "No data were found" } } ``` --- Part of the [REST API for RISE CRM](https://risecrm.themesic.com/apiguide/) documentation. Full page: https://risecrm.themesic.com/apiguide/proposal-comments/search-proposal-comments/