---
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
-
-
standbyok
optional
A query parameter provided to indicate that being a standby should
still return the active status code instead of the standby code
-
activecode
optional
A query parameter provided to indicate the status code that should
be returned for an active node instead of the default of `200`
-
standbycode
optional
A query parameter provided to indicate the status code that should
be returned for a standby node instead of the default of `429`
-
sealedcode
optional
A query parameter provided to indicate the status code that should
be returned for a sealed node instead of the default of `503`
-
uninitcode
optional
A query parameter provided to indicate the status code that should
be returned for an uninitialized Vault instead of the default of
`501`
- Returns (only with GET)
-
```javascript
{
"cluster_id": "c9abceea-4f46-4dab-a688-5ce55f89e228",
"cluster_name": "vault-cluster-5515c810",
"version": "0.6.1-dev"
"server_time_utc": 1469555798,
"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.