Get license details

GET /v1/features/license

Get details about the currently loaded Enterprise Edition license.

Responses

  • 200 application/json

    License response

    Hide response attributes Show response attributes object
    • license object

      Parameters belonging to a valid, signed redpanda license

      Hide license attributes Show license attributes object
      • expires integer(int64)

        Expiration date of the license in Unix epoch seconds

      • format_version integer(int32)

        license schema version evolution number

      • org string

        client the license was generated for

      • sha256 string

        Checksum (sha256) of the raw license data

      • type string

        type of license, currently only free_trial or enterprise

    • loaded boolean

      true if a non-expired license is loaded

GET /v1/features/license
curl \
 --request GET 'http://localhost:9644/v1/features/license'
Response examples (200)
{
  "license": {
    "expires": 42,
    "format_version": 42,
    "org": "string",
    "sha256": "string",
    "type": "string"
  },
  "loaded": true
}