Health

Health Check

Check the health status of the server, database, and Redis.

GET
/api/v1/health

Response Body

application/json

application/json

curl -X GET "https://api.veriworkly.com/api/v1/health"
{
  "success": true,
  "message": "Server is healthy",
  "data": {
    "status": "ok",
    "database": "connected",
    "redis": "connected",
    "timestamp": "2026-04-26T10:00:00.000Z"
  }
}
{
  "success": false,
  "statusCode": 503,
  "message": "Service Unavailable"
}