# Health ## Health check `health.check() -> HealthCheckResponse` **get** `/health` Returns HTTP 200 when the service is running. No authentication required. ### Returns - `class HealthCheckResponse: …` - `status: Literal["ok"]` - `"ok"` ### Example ```python from chamelaion import Chamelaion client = Chamelaion() response = client.health.check() print(response.status) ``` #### Response ```json { "status": "ok" } ```