Discovery API
The HTTP API uses the port 7474
for HTTP and the port 7473
for HTTPS.
See the Operations Manual → Ports for an overview of the Neo4j-specific ports. |
Root discovery
Each server provides a root discovery URI that lists a basic index of other URIs, as well as version information.
Example request
GET http://localhost:7474/
Accept: application/json
Example response
200 OK
Content-Type: application/json
{
"bolt_direct": "bolt://localhost:7687",
"bolt_routing": "neo4j://localhost:7687",
"transaction": "http://localhost:7474/db/{databaseName}/tx",
"neo4j_version": "4.4.0",
"neo4j_edition": "enterprise"
}
Was this page helpful?