Skip to main content

Overview

Simple health check for the device protocol server (port 8000). Returns {"status": "ok"} and a timestamp.
This is the device protocol health check on port 8000. For the control API health check, see GET /health on port 8082.

Endpoint

GET http://your-server:8000/nest/ping

Response

Success (200 OK)

{
  "status": "ok",
  "timestamp": 1707148800000
}
FieldTypeDescription
statusstringAlways "ok"
timestampnumberCurrent server time in milliseconds since Unix epoch

Example

curl http://your-server:8000/nest/ping