# GET /api/estimates/{id} > Estimates - Get Estimate by ID - **Endpoint:** `GET /api/estimates/{id}` - **Group:** Estimates - **Since:** v1.0.0 - **Defined in:** `RestApi/Controllers/EstimatesController.php` ## Headers | Field | Type | Description | | --- | --- | --- | | `authtoken` | String | Authentication token, generated from admin area | ## Parameters | Field | Type | Required | Description | | --- | --- | --- | --- | | `id` | Number | yes | Estimate unique ID | ## Request example ```bash curl -X GET "https://yoursite.com/index.php/api/estimates/123" \ -H "authtoken: YOUR_API_TOKEN" ``` ## Responses ### Success - Success-Response: ```json { "id": "1", "client_id": "2", "estimate_date": "2021-09-15", "valid_until": "2021-10-15", "status": "sent", "note": "Estimate for new project", "tax_id": "1", "tax_id2": "0", "discount_amount": "10", "discount_amount_type": "percentage", "project_id": "1" } ``` --- Part of the [REST API for RISE CRM](https://risecrm.themesic.com/apiguide/) documentation. Full page: https://risecrm.themesic.com/apiguide/estimates/show-estimate/