Skip to content
DashboardGet API Key

Health check

health.check() -> HealthCheckResponse
GET/health

Returns HTTP 200 when the service is running. No authentication required.

ReturnsExpand Collapse
class HealthCheckResponse:
status: Literal["ok"]

Health check

from chamelaion import Chamelaion

client = Chamelaion()
response = client.health.check()
print(response.status)
{
  "status": "ok"
}
Returns Examples
{
  "status": "ok"
}