Get license information
Returns information about your Elastic license, including its type, its status, when it was issued, and when it expires. For more information about the different types of licenses, refer to Elastic Stack subscriptions.
Query parameters
-
If
true
, this parameter returns enterprise for Enterprise license types. Iffalse
, this parameter returns platinum for both platinum and enterprise license types. This behavior is maintained for backwards compatibility. This parameter is deprecated and will always be set to true in 8.x. -
local boolean
Specifies whether to retrieve local information. The default value is
false
, which means the information is retrieved from the master node.
GET /_license
curl \
-X GET http://api.example.com/_license
Response examples (200)
{
"license": {
"": 42.0,
"issued_to": "string",
"issuer": "string",
"max_nodes": 42.0,
"max_resource_units": 42.0,
"status": "active",
"type": "missing",
"uid": "string"
}
}