How can I get the current version of a neo4j server (or in general server information) via REST? Is there any "/ status" URI or something similar?
Creating a GET request to the root of the server data will return this information:
GET http://localhost:7474/db/data/
The call returns a JSON object. The server version is in the key "neo4j_version". It is described here .
Try this, Get http: // localhost: 7474 / db / manage / server / version This will give you a json response like {"edition": "community", "version": "2.3.3"}