Health
The health endpoint provides a simple liveness check for the server. It is used by Railway for deployment health checks and does not require authentication.
GET /health
Section titled “GET /health”Returns the server status. No authentication required.
curl https://app.thogits.com/api/healthResponse (200):
{ "status": "ok"}Errors:
If the server is unreachable or the process has crashed, the request will fail at the network level (connection refused). There are no application-level error responses for this endpoint — if you get any HTTP response, the server is running.