Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Neo4j - How to get current version via REST

Tags:

rest

neo4j

How can i get the current running neo4j-server version (or in general server informations) via REST? Is there any "/status" URI or something similar?

like image 943
Alebon Avatar asked Jun 04 '12 12:06

Alebon


2 Answers

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

like image 173
manu thomas Avatar answered Nov 07 '22 12:11

manu thomas


Making a GET request against the server data root will return this info:

GET http://localhost:7474/db/data/

The call will return a JSON object. Server version is in the key "neo4j_version". This is documented here.

like image 41
Josh Adell Avatar answered Nov 07 '22 13:11

Josh Adell