Skip to main content

How do I check the app version via the API?

Written by Petr Pech

The application version and basic server status are returned by the /status endpoint. It is located at the server root, i.e. outside the address of a specific company, and exists in the status.json and status.xml variants.


Request

GET https://{server}:5434/status.json

GET https://demo.flexibee.eu/status.json

From the response, the following fields are particularly useful:

Field

Meaning

version

ABRA Flexi version, for example 2026.5.2.

licenseName, licenseVariant

License name and variant.

loggedUser, sessions

How many users are logged in and how many sessions are open.

appServerRunning

Whether the application server is running.

javaVersion, operatingSystem

The environment in which the server is running.

💡 This endpoint is handy as a simple availability check before a batch run — it lets you verify at once that the server is responding, which version it's running, and whether anyone is currently working on it.


Related

Did this answer your question?