# GET /api/projects/search/{keyword} > Projects - Search Projects - **Endpoint:** `GET /api/projects/search/{keyword}` - **Group:** Projects - **Since:** v1.0.0 - **Defined in:** `RestApi/Controllers/ProjectsController.php` ## Headers | Field | Type | Description | | --- | --- | --- | | `authtoken` | String | Authentication token, generated from admin area | ## Parameters | Field | Type | Required | Description | | --- | --- | --- | --- | | `keyword` | String | yes | Search keywords | ## Request example ```bash curl -X GET "https://yoursite.com/index.php/api/projects/search/acme" \ -H "authtoken: YOUR_API_TOKEN" ``` ## Responses ### Success - Success-Response: ```json { "id": "2", "title": "project 1", "description": "", "start_date": null, "deadline": null, "client_id": "2", "created_date": "2021-09-12", "created_by": "1", "status": "open", "starred_by": "", "estimate_id": "0", "order_id": "0", "deleted": "0", "company_name": "jdoe", "currency_symbol": "INR", "total_points": null, "completed_points": null } ``` --- Part of the [REST API for RISE CRM](https://risecrm.themesic.com/apiguide/) documentation. Full page: https://risecrm.themesic.com/apiguide/projects/search-projects/