Platform

Health check

Returns the overall health of the WUTS gateway, including process uptime, version, and live connectivity status for the NATS message bus and the Dragonfly cache. Used by load balancers and uptime monitors; requires no authentication.

GET
/health

Returns the overall health of the WUTS gateway, including process uptime, version, and live connectivity status for the NATS message bus and the Dragonfly cache. Used by load balancers and uptime monitors; requires no authentication.

Response Body

application/json

curl -X GET "https://example.com/health"
{  "success": true,  "data": {    "status": "healthy",    "timestamp": "2026-06-15T18:42:10.512Z",    "uptime": "72h13m4s",    "version": "1.0.0",    "nats": {      "connected": true,      "server_id": "NDHJKL7QWERTY3MNOP4XZ",      "msgs_in": 184523,      "msgs_out": 192044    },    "cache": {      "status": "healthy",      "hits": 482910,      "misses": 13402,      "errors": 0,      "connections": 16    }  }}