Retrieve System Version
The Version API is used to retrieve the current version of FusionAuth.
Request#
GET/api/system/version
OpenAPI Spec
Response#
Response Codes| Code | Description |
|---|---|
| 200 | The request was successful. The response will contain a JSON body. |
| 401 | You 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. |
| 500 | There was an internal error. A stack trace is provided and logged in the FusionAuth log files. The response will be empty. |
Response Body#
versionStringThe version of the running FusionAuth instance.
Example JSON Response
{
"version": "1.27.0"
}