Neo4j - How to get the current version via REST

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?

+7
source share
2 answers

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 .

+9
source

Try this, Get http: // localhost: 7474 / db / manage / server / version This will give you a json response like {"edition": "community", "version": "2.3.3"}

+12
source

All Articles