Skip to main content

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.

def get_health() -> DetailedHealthCheckResponse

Returns

  • DetailedHealthCheckResponse: Overall health plus per-service status details

Examples

health = db.get_health()
print(health.status)
for svc in health.services:
    print(svc.name, svc.status)