Return Joomla CMS version information in different formats.
Gets a PHP standardized version string for the current Joomla.
Gets a version string for the current Joomla with all release information.
Returns the user agent.
Method to get the help file version.
https://yourdomain.com/api/v1/cms/version/:option
| Option | Description | 
|---|---|
| Response formats | JSON | 
| Requires authentication | Yes | 
| Rate limited | NO | 
| Name | Details | 
|---|---|
| option | 
 | 
GET https://yourdomain.com/api/v1/cms/version/shortversion
{
  "msg": "Guests cannot view version information.",
  "error": false,
  "status": 403
}{
  "shortVersion": "3.7.0",
  "error": false,
  "status": 200
}{
  "longVersion": "Joomla! 3.7.0 Stable [ Amani ] 25-April-2017 15:36 GMT",
  "error": false,
  "status": 200
}{
  "userAgent": "Mozilla/5.0 Joomla!/3.7.0 Framework/3.7",
  "error": false,
  "status": 200
}{
  "helpVersion": ".37",
  "error": false,
  "status": 200
}{
  "server": "Apache/2.4.6",
  "content-type": "application/json",
  "date": "Wed, 03 May 2017 02:19:43 GMT",
  "connection": "Keep-Alive",
  "access-control-allow-origin": "https://getcapi.io",
  "content-length": "51",
  "keep-alive": "timeout=5, max=100"
}