State of the running instance, served from /new_api/status.
1. Get instance status
Identifies the running build of minerva - its version, the git commit it was built from and the build time. The call requires no authentication, so it can be used to check that an instance is reachable and to find out which features it supports.
1.1. HTTP request
GET /minerva/new_api/status HTTP/1.1
1.2. CURL sample
$ curl 'https://minerva-dev.lcsb.uni.lu/minerva/new_api/status' -X GET
1.3. HTTP response
HTTP/1.1 200 OK
1.4. Response Fields
| Path | Type | Description |
|---|---|---|
|
|
version of the minerva platform |
|
|
git commit hash used to build the platform |
|
|
date and time when the platform was built |
1.5. Sample Response
{
"version" : "Unknown",
"gitHash" : "Unknown",
"buildTime" : "Unknown"
}