# GET /api/proposals/search/{keyword} > Proposals - Search Proposals - **Endpoint:** `GET /api/proposals/search/{keyword}` - **Group:** Proposals - **Since:** v1.0.0 - **Defined in:** `RestApi/Controllers/ProposalsController.php` ## Headers | Field | Type | Description | | --- | --- | --- | | `authtoken` | String | Authentication token, generated from admin area | ## Parameters | Field | Type | Required | Description | | --- | --- | --- | --- | | `keyword` | String | yes | Search keyword | ## Request example ```bash curl -X GET "https://yoursite.com/index.php/api/proposals/search/acme" \ -H "authtoken: YOUR_API_TOKEN" ``` ## Responses ### Success - Success-Response: ```json [ { "id": "1", "client_id": "2", "proposal_date": "2021-09-15", "status": "sent", "note": "Proposal for new project" } ] ``` --- Part of the [REST API for RISE CRM](https://risecrm.themesic.com/apiguide/) documentation. Full page: https://risecrm.themesic.com/apiguide/proposals/search-proposals/