# GET /api/invoices/search/{keyword} > Invoices - Search Invoices - **Endpoint:** `GET /api/invoices/search/{keyword}` - **Group:** Invoices - **Since:** v1.0.0 - **Defined in:** `RestApi/Controllers/InvoicesController.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/invoices/search/acme" \ -H "authtoken: YOUR_API_TOKEN" ``` ## Responses ### Success - Success-Response: ```json { "id": "1", "client_id": "2", "project_id": "1", "bill_date": "2021-09-12", "due_date": "2021-10-01", "note": "", "labels": "", "last_email_sent_date": "2021-09-12", "status": "not_paid", "tax_id": "1", "tax_id2": "1", "tax_id3": "0", "recurring": "0", "recurring_invoice_id": "0", "repeat_every": "1", "repeat_type": "months", "no_of_cycles": "0", "next_recurring_date": null, "no_of_cycles_completed": "0", "due_reminder_date": null, "recurring_reminder_date": null, "discount_amount": "1", "discount_amount_type": "percentage", "discount_type": "after_tax", "cancelled_at": null, "cancelled_by": "0", "files": "a:0:{}", "deleted": "0", "currency": "USD", "currency_symbol": "INR", "company_name": "Company", "project_title": "project 1", "invoice_value": "1188", "payment_received": "0", "tax_percentage": "10", "tax_percentage2": "10", "tax_percentage3": null, "cancelled_by_user": null, "labels_list": null } ``` --- Part of the [REST API for RISE CRM](https://risecrm.themesic.com/apiguide/) documentation. Full page: https://risecrm.themesic.com/apiguide/invoices/search-invoices/