Health

Health API

The Health API provides endpoints to monitor the status and health of your PoloCloud instance.

Monitor system health, status, and availability via REST API

Health Check

Check if the PoloCloud REST API is running and healthy.

Endpoint: GET /polocloud/api/v3/health/

Response:

{
  "status": 200,
  "message": "Healthy"
}

Usage Examples

Basic Health Check

curl -X GET "http://localhost:8080/polocloud/api/v3/health/"

Health Check with cURL

curl -X GET "http://localhost:8080/polocloud/api/v3/health/" \
  -H "Accept: application/json"

Health Check with wget

wget -qO- http://localhost:8080/polocloud/api/v3/health/