# GET /api/users/search/{keyword} > Users - Search Users - **Endpoint:** `GET /api/users/search/{keyword}` - **Group:** Users - **Since:** v1.0.0 - **Defined in:** `RestApi/Controllers/UsersController.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/users/search/acme" \ -H "authtoken: YOUR_API_TOKEN" ``` ## Responses ### Success - Success-Response: ```json [ { "id": "1", "first_name": "John", "last_name": "Doe", "email": "john@example.com", "user_type": "staff", "status": "active" } ] ``` --- Part of the [REST API for RISE CRM](https://risecrm.themesic.com/apiguide/) documentation. Full page: https://risecrm.themesic.com/apiguide/users/search-users/