Skip to main content

Get instance operational status

GET <your-unleash-url>/health

Authorization

name: Authorizationtype: apiKeyin: header

This operation returns information about whether this Unleash instance is healthy and ready to serve requests or not. Typically used by your deployment orchestrator (e.g. Kubernetes, Docker Swarm, Mesos, et al.).

Request

Responses

healthCheckSchema

Schema
  • health string required

    Possible values: [GOOD, BAD]

    The state this Unleash instance is in. GOOD if everything is ok, BAD if the instance should be restarted

Authorization

name: Authorizationtype: apiKeyin: header

Request

Base URL
<your-unleash-url>
apiKey
curl / cURL
curl -L -X GET '<your-unleash-url>/health' \
-H 'Accept: application/json' \
-H 'Authorization: <API_KEY_VALUE>'