GET
/api/healthReturns the current status of the application and its database connection. Use this for uptime monitoring, container health checks, or load balancer probes.
Authorization
None
Parameters
None
Example Request
curl https://your-instance.com/api/healthResponses
200Application and database are healthy
{
"status": "ok"
}503Database is unreachable
{
"status": "error"
}