Skip to content

Health

GET /health

Returns the API status and Redis cache connection state. This endpoint is always accessible, even when authentication is enabled.

{ "status": "ok", "cache": "connected" }
FieldTypeDescription
statusstringAlways "ok" when the API is running.
cachestringRedis cache state (see below).
ValueMeaning
"connected"Redis is configured and connected.
"error"Redis is configured but the connection failed.
"disabled"No REDIS_URL set — caching is off.
Terminal window
curl http://localhost:3000/health
# {"status":"ok","cache":"disabled"}