Server Health Check
# Server Health Check
Lightweight service uptime and health probe endpoint used by load balancers, container orchestrators (e.g. Kubernetes, AWS ECS), and uptime monitoring systems to confirm the API server is online and accepting requests.
---
### Endpoint Overview
- **Method:** `GET`
- **Route:** `/health`
- **Full URL:** `{{baseUrl}}/health`
- **Authentication:** `None (Public)`
- **Content-Type:** `N/A`
---
### Request Headers
_No specific headers required._
---
### Query Parameters / Request Body
_This endpoint does not accept any query parameters or request body._
#### Example Request URL
``` http
GET {{baseUrl}}/health
```
---
### Response Body Schema (`200 OK`)
| Field | Data Type | Description |
| --- | --- | --- |
| `message` | `string` | Service health status message (`"We are good and running!!!"`) |
---
### Response Examples
#### 1\. `200 OK` — Service Healthy & Running
``` json
{
"message": "We are good and running!!!"
}
```
---
### Status Codes Reference
| HTTP Status Code | Condition |
| --- | --- |
| **`200 OK`** | Express application server is healthy, active, and responding to incoming requests. |
---
Authentication
AuthorizationBearer
Bearer authentication of the form Bearer <token>, where token is your auth token.