Aether

Health

Check Aether API service health and availability. Returns database and Redis connection status in real-time.

GET
/health

Returns 200 when both database and Redis are reachable. Returns 503 when one or more dependencies are unavailable. No authentication required.

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/health"
{  "status": "ok",  "db": "ok",  "redis": "ok",  "timestamp": "2019-08-24T14:15:22Z"}
{  "success": false,  "error": {    "code": "PROFILE_NOT_FOUND",    "message": "string",    "details": {}  }}
{  "status": "degraded",  "db": "string",  "redis": "string",  "timestamp": "2019-08-24T14:15:22Z"}

On this page