Login/Register
Installatron Server
API Documentation

Version

GET /version

Display Installatron's version and license information.

Parameters


API

/version
API endpoint.
GET
Method.

Response


Response

status
int
HTTP status code describing the result of the request.

200
for Success.
All other numbers represent errors which are described in the errcode output below.
result
boolean
true
= Success.
false
= Failure.
data


build
int
Internal build number of this version of Installatron.
(eg.
500
)
license
boolean
true
= This server is licensed.
false
= This server is not licensed.
license_expiry
string
License expiration date (as a Unix timestamp).
(eg.
1234567890
)
product
enum
  • Installatron Plugin

    Installatron as a plugin for supported webhosting control panels like cPanel/WHM, DirectAdmin, and Plesk.

  • Installatron Server

    The standalone instance of Installatron.
version
string
Installatron's version. Note that Installatron Plugin and Installatron Server have different versions.
version_available
string
Newest version available on the select version_channel.
(eg.
5.0.1
)
version_channel
enum
Channel that Installatron is using.
  • release

    Installatron's primary release.

  • edge

    Version with all the latest bug fixes and features, and testing.

  • stable

    Version that updates very rarely, and only with changes that have been well tested on
    release
    .

  • none

    The current version was specifically, manually installed and so won't be automatically updated by Installatron.

Full Examples

Example: Display Installatron's version and license information

Method: curl
Installatron Product: Installatron Server (switch to Installatron Plugin)
curl -X POST https://{SERVER_IP}/version \
    -H 'X-API-KEY: {the key= or key2= value from /usr/local/installatron/etc/settings.ini}' \
    -H 'X-HTTP-Method-Override: GET' \
    -H 'Accept: application/json'
Response: json
{
    "status": 200,
    "result": true,
    "message": "",
    "data": {
        "product": "Installatron Server",
        "version": "5.0.0",
        "build": 500,
        "version_channel": "release",
        "version_available": "5.0.0-1",
        "license": true,
        "license_expiry": 1234567890
    }
}


© 2004 - 2025 Installatron LLC. All rights reserved. Privacy Policy.