v4

latestOpenAPI 3.1.0Proprietary2026-08-034715226.2 KB
metadata

Health check

Returns server status, version, uptime, and the combined live status of the Postgres and Redis dependencies in db (formatted as <postgres>/<redis>, each segment ok or down). Returns 200 when both respond within 2 seconds; otherwise 503 with the same body shape.

get/health

Response

All dependencies healthy

dbstring required

Combined Postgres and Redis liveness, formatted as <postgres>/<redis> where each segment is ok or down (e.g. ok/ok, ok/down). Probe timeout is 2 seconds; the underlying error is logged server-side, not returned.

status'ok' | 'degraded' required
uptimestring required
versionstring required

Example response

{
  "db": "ok/ok"
}