Retrieve System Version

The Version API is used to retrieve the current version of FusionAuth.

Request#

API Key AuthenticationBasic Authentication using an API Key
Return the FusionAuth system version
GET/api/system/version
OpenAPI Spec

Response#

Response Codes
CodeDescription
200The request was successful. The response will contain a JSON body.
401You did not supply a valid Authorization header. The header was omitted or your API key was not valid. The response will be empty. See Authentication.
500There was an internal error. A stack trace is provided and logged in the FusionAuth log files. The response will be empty.

Response Body#

versionString

The version of the running FusionAuth instance.

Example JSON Response

{
  "version": "1.27.0"
}