--- layout: "http" page_title: "HTTP API: /sys/health" sidebar_current: "docs-http-debug-health" description: |- The '/sys/health' endpoint is used to check the health status of Vault. --- # /sys/health
Description
Returns the health status of Vault. This matches the semantics of a Consul HTTP health check and provides a simple way to monitor the health of a Vault instance.
Method
GET/HEAD
Parameters
Returns (only with GET)
```javascript { "version": "Vault v0.6.1-dev ('418257d27c67fabc4fdd831a6a750d54d8bed76f+CHANGES')", "server_time_utc": 1469226751, "standby": false, "sealed": false, "initialized": true } ``` Default Status Codes (GET/HEAD): * `200` if initialized, unsealed, and active. * `429` if unsealed and standby. * `500` if sealed, or if not initialized.