Skip to main content
GET
/
health
Health Check
curl --request GET \
  --url https://api.mor.org/health
{
  "status": "<string>",
  "timestamp": "<string>",
  "uptime": 123,
  "container_id": "<string>",
  "version": "<string>"
}
Health check endpoint with container diagnostics for deployment monitoring. Returns system health, uptime, and unique container identifier for support and log analysis. No sensitive AWS or hostname information is exposed.

Response

status
string
System status: healthy or unhealthy
timestamp
string
Current timestamp (ISO 8601)
uptime
number
System uptime in seconds
container_id
string
Unique container identifier for log correlation
version
string
API version
Monitoring: This endpoint is designed for load balancers, monitoring systems, and health check tools. It provides essential diagnostic information without exposing sensitive data.
Container ID: The container_id field is useful for correlating health check results with specific container instances in multi-instance deployments. Include this in support requests for faster issue resolution.
This endpoint does not require authentication and should be used by monitoring systems to check API availability. A 200 status code with "status": "healthy" indicates the system is operational.