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

# Health Check

> Health check endpoint with container diagnostics

Health check endpoint with container diagnostics for deployment monitoring.

Returns system health, uptime, and unique container identifier for support and log analysis. No sensitive AWS or hostname information is exposed.

### Response

<ResponseField name="status" type="string">
  System status: `healthy` or `unhealthy`
</ResponseField>

<ResponseField name="timestamp" type="string">
  Current timestamp (ISO 8601)
</ResponseField>

<ResponseField name="uptime" type="number">
  System uptime in seconds
</ResponseField>

<ResponseField name="container_id" type="string">
  Unique container identifier for log correlation
</ResponseField>

<ResponseField name="version" type="string">
  API version
</ResponseField>

<Info>
  **Monitoring**: This endpoint is designed for load balancers, monitoring systems, and health check tools. It provides essential diagnostic information without exposing sensitive data.
</Info>

<Tip>
  **Container ID**: The `container_id` field is useful for correlating health check results with specific container instances in multi-instance deployments. Include this in support requests for faster issue resolution.
</Tip>

<Note>
  This endpoint does not require authentication and should be used by monitoring systems to check API availability. A 200 status code with `"status": "healthy"` indicates the system is operational.
</Note>
