Vault
/sys/license/status
Enterprise
Appropriate Vault Enterprise license required
Use the /sys/license/status endpoint to view the license used in
Vault.
License status
This endpoint returns information about licensing. See license autoloading for additional background.
In the response:
autoloading_usedwill be true if an autoloaded license was provided to the node, false otherwise. This should always be true from Vault 1.11.0 onward.autoloadedis the autoloaded license if autoloading_used is true.persisted_autoloadis the autoloaded license the active node last wrote to storage; this is only used to detect inconsistently licensed nodes in the cluster. It cannot be used as a license itself.editiononly applies to IBM Passport Advantage Online licenses. HashiCorp licenses leaveeditionempty.add_onsonly applies to IBM Passport Advantage Online licenses. HashiCorp licenses leaveadd_onsempty.storedwas used for the stored license prior to Vault 1.11.0. Stored licenses are no longer supported.
autoloaded, and persisted_autoload will both have the same structure.
| Method | Path |
|---|---|
GET | /sys/license/status |
Sample request
$ curl \
--header "X-Vault-Token: ..." \
http://127.0.0.1:8200/v1/sys/license/status
Sample response for a HashiCorp license
{
"data": {
"autoloaded": {
"add_ons": "",
"architecture": [
"*"
],
"edition": "",
"expiration_time": "2022-05-17T23:59:59Z",
"features": [
"HSM",
"Performance Replication",
"DR Replication",
"MFA",
"Sentinel",
"Seal Wrapping",
"Control Groups",
"Performance Standby",
"Namespaces",
"KMIP",
"Entropy Augmentation",
"Transform Secrets Engine",
"Lease Count Quotas",
"Key Management Secrets Engine",
"Automated Snapshots"
],
"issuer": "hashicorp",
"license_id": "060d7820-fa59-f95c-832b-395db0aeb9ba",
"os": [
"*"
],
"performance_standby_count": 9999,
"start_time": "2021-05-17T00:00:00Z",
"termination_time": "2031-05-17T23:59:59Z"
},
"autoloading_used": true,
"persisted_autoload": {
"add_ons": "",
"architecture": [
"*"
],
"edition": "",
"expiration_time": "2022-05-17T23:59:59Z",
"features": [
"HSM",
"Performance Replication",
"DR Replication",
"MFA",
"Sentinel",
"Seal Wrapping",
"Control Groups",
"Performance Standby",
"Namespaces",
"KMIP",
"Entropy Augmentation",
"Transform Secrets Engine",
"Lease Count Quotas",
"Key Management Secrets Engine",
"Automated Snapshots"
],
"issuer": "hashicorp",
"license_id": "060d7820-fa59-f95c-832b-395db0aeb9ba",
"os": [
"*"
],
"performance_standby_count": 9999,
"start_time": "2021-05-17T00:00:00Z",
"termination_time": "2031-05-17T23:59:59Z"
}
}
}
Sample response for an IBM Passport Advantage Online license
{
"data": {
"autoloaded": {
"add_ons": "",
"architecture": [
"distributed"
],
"edition": "premium",
"expiration_time": "2028-12-31T00:00:00Z",
"features": [
"HSM",
"Performance Replication",
"DR Replication",
"MFA",
"Sentinel",
"Seal Wrapping",
"Control Groups",
"Performance Standby",
"Namespaces",
"Entropy Augmentation",
"Lease Count Quotas",
"Automated Snapshots",
"Secrets Sync",
"Secrets Import",
"Oracle Database Secrets Engine",
"Azure Secrets Engine",
"SPIFFE Auth Engine",
"SPIFFE Secrets Engine",
"OpenLDAP Secrets Engine",
"PKI External CA Secrets Engine",
"Okta Auth Engine"
],
"issuer": "pao.ibm.com",
"license_id": "0000095113",
"os": [
"*"
],
"performance_standby_count": 9999,
"start_time": "2025-03-22T00:00:00Z",
"termination_time": "2029-03-01T00:00:00Z"
},
"autoloading_used": true,
"persisted_autoload": {
"add_ons": "",
"architecture": [
"distributed"
],
"edition": "premium",
"expiration_time": "2028-12-31T00:00:00Z",
"features": [
"HSM",
"Performance Replication",
"DR Replication",
"MFA",
"Sentinel",
"Seal Wrapping",
"Control Groups",
"Performance Standby",
"Namespaces",
"Entropy Augmentation",
"Lease Count Quotas",
"Automated Snapshots",
"Secrets Sync",
"Secrets Import",
"Oracle Database Secrets Engine",
"Azure Secrets Engine",
"SPIFFE Auth Engine",
"SPIFFE Secrets Engine",
"OpenLDAP Secrets Engine",
"PKI External CA Secrets Engine",
"Okta Auth Engine"
],
"issuer": "pao.ibm.com",
"license_id": "0000095113",
"os": [
"*"
],
"performance_standby_count": 9999,
"start_time": "2025-03-22T00:00:00Z",
"termination_time": "2029-03-01T00:00:00Z"
}
}
}