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

# get_health

> Return detailed health status for the API

<Tabs>
  <Tab title="Sync">
    ```python theme={null}
    def get_health() -> DetailedHealthCheckResponse
    ```
  </Tab>

  <Tab title="Async">
    ```python theme={null}
    async def get_health() -> DetailedHealthCheckResponse
    ```
  </Tab>
</Tabs>

## Returns

* `DetailedHealthCheckResponse`: Overall health plus per-service status details

## Examples

```python theme={null}
health = db.get_health()
print(health.status)
for svc in health.services:
    print(svc.name, svc.status)
```
