# GET /api/leave-applications > Leave Applications - List all Leave Applications - **Endpoint:** `GET /api/leave-applications` - **Group:** Leave Applications - **Since:** v1.0.0 - **Defined in:** `RestApi/Controllers/LeaveApplicationsController.php` ## Headers | Field | Type | Description | | --- | --- | --- | | `authtoken` | String | Authentication token, generated from admin area | ## Parameters | Field | Type | Required | Description | | --- | --- | --- | --- | | `applicant_id` | Number | no | Optional filter by applicant user ID | | `status` | String | no | Optional filter by status (pending, approved, rejected, canceled) | ## Request example ```bash curl -X GET "https://yoursite.com/index.php/api/leave-applications" \ -H "authtoken: YOUR_API_TOKEN" ``` ## Responses ### Success - Success-Response: ```json [ { "id": "1", "leave_type_id": "1", "applicant_id": "1", "start_date": "2024-01-15", "end_date": "2024-01-17", "reason": "Personal", "status": "pending" } ] ``` --- Part of the [REST API for RISE CRM](https://risecrm.themesic.com/apiguide/) documentation. Full page: https://risecrm.themesic.com/apiguide/leave-applications/get-leave-applications/