open-vault/website/source/docs/http/sys-seal-status.html.md

611 B

layout page_title sidebar_current description
http HTTP API: /sys/seal-status docs-http-seal-status The '/sys/seal-status' endpoint is used to check the seal status of a Vault.

/sys/seal-status

Description
Returns the seal status of the Vault.
Method
GET
Parameters
None
Returns
The "t" parameter is the threshold, and "n" is the number of shares.
```javascript
{
  "sealed": true,
  "t": 3,
  "n": 5,
  "progress": 2
}
```