Skip to main content

Overview

Simple health check endpoint. Returns {"status": "ok"} if the server is running. Useful for load balancers, container orchestration, and monitoring tools.

Endpoint

GET http://your-server:8082/health

Response

Success (200 OK)

{
  "status": "ok"
}
The server always returns 200 OK with this body as long as the process is running. There is no deeper health check (e.g., database connectivity).

Examples

curl http://your-server:8082/health

GET /api/stats

Detailed server statistics

GET /nest/ping

Device protocol health check (port 8000)