Health Check
Check if the EntryGuard API is running and healthy.
Request
GET /health
Authentication
No authentication required. This endpoint is public.
Response
Returns a JSON object with the current service status.
Status Code: 200 OK
Response Body:
| Field | Type | Description |
|---|---|---|
| status | string | Service status (always "UP" when healthy) |
| timestamp | string | ISO 8601 timestamp of the response |
| version | string | Current API version |
Example
curl https://api.entryguard.io/api/v1/health
Response:
{
"status": "UP",
"timestamp": "2024-01-15T10:30:00Z",
"version": "1.0.0"
}