Discovery API
This chapter describes the actions that can be performed using the Discovery HTTP endpoint.
1. 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",
"cluster": "http://localhost:7687/db/{databaseName}/cluster",
"transaction": "http://localhost:7687/db/{databaseName}/tx",
"neo4j_version": "4.0.0",
"neo4j_edition": "enterprise"
}
Was this page helpful?