Check the overall health status of the application including database connectivity
GET
/api/v1/health
curl \
--request GET 'http://localhost:3500/api/v1/health'
Response examples (200)
{
"status": "healthy",
"timestamp": "2025-09-25T10:30:00.000Z",
"database": "connected",
"uptime": "2d 5h 30m 45s",
"error": "Database connection timeout"
}
Response examples (400)
{
"message": "string",
"error": "string",
"statusCode": 42.0
}