# GET /api/items > Items - List all Items - **Endpoint:** `GET /api/items` - **Group:** Items - **Since:** v1.0.0 - **Defined in:** `RestApi/Controllers/ItemsController.php` ## Headers | Field | Type | Description | | --- | --- | --- | | `authtoken` | String | Authentication token, generated from admin area | ## Request example ```bash curl -X GET "https://yoursite.com/index.php/api/items" \ -H "authtoken: YOUR_API_TOKEN" ``` ## Responses ### Success - Success-Response: ```json HTTP/1.1 200 OK [ { "id": "1", "title": "Website Design", "description": "Full website design package", "category_id": "1", "unit_type": "hours", "rate": "150.00", "show_in_client_portal": "1", "deleted": "0", "category_title": "Services" } ] ``` --- Part of the [REST API for RISE CRM](https://risecrm.themesic.com/apiguide/) documentation. Full page: https://risecrm.themesic.com/apiguide/items/get-items/