Arkloop Developers

Health Checks

Liveness Probe

GET /healthz

Service liveness probe, no authentication required.

Response 200 OK

{ "status": "ok" }

Readiness Probe

GET /readyz

Service readiness probe, verifies database connection and schema version. No authentication required.

Response

200 OK — Service ready:

{ "status": "ok", "schema_version": "00023" }

503 Service Unavailable — Service not ready (database not connected or schema version mismatch):

{
  "status": "unavailable",
  "reason": "schema version mismatch: expected 00023, got 00020"
}

On this page