{
"basePath": "/",
"swaggerVersion": "1.1",
"apiVersion": "0.1",
"apis": [
{
"operations": [
{
"errorResponses": [
{
"reason": "is returned in all cases.
",
"code": "200"
}
],
"parameters": [
{
"dataType": "Boolean",
"paramType": "query",
"required": false,
"name": "details",
"description": "If set to true, the response will contain a details attribute with additional information about included components and their versions. The attribute names and internals of the details object may vary depending on platform and ArangoDB version.
"
}
],
"notes": "Returns the server name and version number. The response is a JSON object with the following attributes:
shell> curl --dump - http://localhost:8529/_api/version\n\nHTTP/1.1 200 OK\ncontent-type: application/json; charset=utf-8\n\n{ \n \"server\" : \"arango\", \n \"version\" : \"2.6.0-devel\" \n}\n
shell> curl --dump - http://localhost:8529/_api/version?details=true\n\nHTTP/1.1 200 OK\ncontent-type: application/json; charset=utf-8\n\n{ \n \"server\" : \"arango\", \n \"version\" : \"2.6.0-devel\", \n \"details\" : { \n \"architecture\" : \"64bit\", \n \"build-date\" : \"2015-05-04 13:40:00\", \n \"configure\" : \"'./configure' '--enable-relative' '--with-backtrace'\", \n \"icu-version\" : \"54.1\", \n \"libev-version\" : \"4.11\", \n \"maintainer-mode\" : \"false\", \n \"openssl-version\" : \"OpenSSL 1.0.2 22 Jan 2015\", \n \"repository-version\" : \"heads/devel-0-g889d6d54a80c134fbf28b5fed9b54a4f3c7d0e82-dirty\", \n \"server-version\" : \"2.6.0-devel\", \n \"sizeof int\" : \"4\", \n \"sizeof void*\" : \"8\", \n \"v8-version\" : \"3.31.74.1\", \n \"mode\" : \"standalone\" \n } \n}\n