other

STATUS: Returns actual version information and all permissions granted for API

This operation requires authorization in contrast with VERSION operation.

get/status

Response

Successful response

versionstring

The whole Nightscout instance version

apiVersionstring

API v3 subsystem version

srvDatenumber

Actual server date and time in UNIX epoch format

Example response

{
  "version": "0.10.2-release-20171201",
  "apiVersion": "3.0.0",
  "srvDate": 1532936118000,
  "storage": {
    "type": "mongodb",
    "version": "4.0.6"
  },
  "apiPermissions": {
    "devicestatus": "crud",
    "entries": "r",
    "food": "crud",
    "profile": "r",
    "treatments": "crud"
  }
}

Changes