Skip to content

API - Status & Health

These endpoints report whether the backend is running. Neither requires authentication.

GET /api

Returns a JSON object confirming the API is running:

Response
{
"status": "success",
"message": "API is running",
"data": {}
}
GET /api/health

Returns the health status, current time and backend version:

Response
{
"status": "healthy",
"timestamp": "2025-01-01T12:00:00Z",
"version": "5.0.0"
}