Skip to main content

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:

FieldTypeDescription
statusstringService status (always "UP" when healthy)
timestampstringISO 8601 timestamp of the response
versionstringCurrent API version

Example

curl https://api.entryguard.io/api/v1/health

Response:

{
"status": "UP",
"timestamp": "2024-01-15T10:30:00Z",
"version": "1.0.0"
}