open-vault/website/content/api-docs/system/seal-status.mdx
Bryce Kalow b76a56d40c
feat(website): migrates nav data format and updates docs pages (#11242)
* migrates nav data format and updates docs pages

* removes sidebar_title from content files
2021-04-06 13:49:04 -04:00

58 lines
1 KiB
Plaintext

---
layout: api
page_title: /sys/seal-status - HTTP API
description: The `/sys/seal-status` endpoint is used to check the seal status of a Vault.
---
# `/sys/seal-status`
The `/sys/seal-status` endpoint is used to check the seal status of a Vault.
## Seal Status
This endpoint returns the seal status of the Vault. This is an unauthenticated
endpoint.
| Method | Path |
| :----- | :----------------- |
| `GET` | `/sys/seal-status` |
### Sample Request
```shell-session
$ curl \
http://127.0.0.1:8200/v1/sys/seal-status
```
### Sample Response
The "t" parameter is the threshold, and "n" is the number of shares.
```json
{
"type": "shamir",
"sealed": true,
"t": 3,
"n": 5,
"progress": 2,
"nonce": "",
"version": "0.9.0"
}
```
Sample response when Vault is unsealed.
```json
{
"type": "shamir",
"sealed": false,
"t": 3,
"n": 5,
"progress": 0,
"version": "0.9.0",
"cluster_name": "vault-cluster-d6ec3c7f",
"cluster_id": "3e8b3fec-3749-e056-ba41-b62a63b997e8",
"nonce": "ef05d55d-4d2c-c594-a5e8-55bc88604c24"
}
```