# Check Slot Availability

#### **Method: `check_slot_availability(start_time, duration_minutes=60)`**

Checks if a specific time slot is available.

### **Parameters**

| Parameter          | Type     | Description                                |
| ------------------ | -------- | ------------------------------------------ |
| `start_time`       | datetime | The start time to check availability       |
| `duration_minutes` | int      | Duration of the slot (default: 60 minutes) |

### **Returns**

✅ `True` if the time slot is available\
❌ `False` if the time slot is occupied

### **Example Usage**

```python
from datetime import datetime
calendar = GoogleCalendar("credentials.json")

is_available = calendar.check_slot_availability(
    datetime(2024, 3, 15, 14, 0),  # March 15, 2024, 2:00 PM
    duration_minutes=60
)
print(is_available)  # True or False
```
