# GET /api/orders/{id} > Orders - Get Order by ID - **Endpoint:** `GET /api/orders/{id}` - **Group:** Orders - **Since:** v1.0.0 - **Defined in:** `RestApi/Controllers/OrdersController.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/orders/123" \ -H "authtoken: YOUR_API_TOKEN" ``` ## Responses ### Success - Success-Response: ```json { "id": "1", "client_id": "2", "order_date": "2024-01-15", "status_id": "1", "note": "", "project_id": "0" } ``` --- Part of the [REST API for RISE CRM](https://risecrm.themesic.com/apiguide/) documentation. Full page: https://risecrm.themesic.com/apiguide/orders/show-order/