> ## Documentation Index
> Fetch the complete documentation index at: https://docs.shiftsheet.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Leave Request

> Retrieve detailed information about a specific leave request.

This includes detailed approval history and who approved or rejected the request.

### Path Parameters

<ParamField path="id" type="string" required>
  The unique identifier of the leave request.
</ParamField>

### Response

<ResponseExample>
  ```json theme={null}
  {
    "data": {
      "id": "lv_123...",
      "startDate": "2026-12-20T00:00:00.000Z",
      "endDate": "2026-12-26T23:59:59.999Z",
      "days": 5,
      "reason": "Family vacation",
      "status": "APPROVED",
      "leaveType": {
        "id": "lt_abc...",
        "name": "Annual Leave",
        "category": "ANNUAL"
      },
      "user": {
        "id": "usr_999...",
        "firstName": "John",
        "lastName": "Smith"
      },
      "approvals": [
        {
          "status": "APPROVED",
          "notes": "Enjoy your trip!",
          "approver": {
            "id": "usr_777...",
            "firstName": "Jane",
            "lastName": "Manager"
          }
        }
      ]
    }
  }
  ```
</ResponseExample>
