Health

The health endpoint provides daemon status information. It requires no authentication and is designed for load balancers, monitoring, and the jeriko health CLI command.

GET/health

Returns daemon status, runtime, uptime, and memory usage.

Example

curl http://127.0.0.1:7741/health
200Response
{
  "ok": true,
  "data": {
    "status": "healthy",
    "version": "2.0.0",
    "node": "v22.0.0",
    "runtime": "bun",
    "uptime_seconds": 3600,
    "uptime_human": "1h 0m 0s",
    "memory": {
      "rss_mb": 48,
      "heap_mb": 24
    },
    "timestamp": "2026-03-03T12:00:00.000Z"
  }
}