Endpoints

This page contains a list of the endpoints that the Query API provides, plus pointers to other HTTP endpoints available on a Neo4j server.

Endpoint location Description

/

To obtain a list of available endpoints on your installation and some basic server information. Not On Aura

/db/<databaseName>/query/v2

To submit queries.
For more information, see Query the database.

Discovery API

To obtain a list of available endpoints on your installation, together with some basic server information, send an un-authenticated GET request to the server root.

Example request

GET http://localhost:7474/

Example response

{
  "bolt_routing": "neo4j://localhost:7687",
  "query": "http://localhost:7474/db/{databaseName}/query/v2",
  "dbms/cluster": "http://localhost:7474/dbms/cluster",
  "db/cluster": "http://localhost:7474/db/{databaseName}/cluster",
  "transaction": "http://localhost:7474/db/{databaseName}/tx",
  "bolt_direct": "bolt://localhost:7687",
  "neo4j_version": "5.19.0",
  "neo4j_edition": "enterprise",
  "auth_config": {
    "oidc_providers": []
  }
}
Bolt routing is meant to be used with client libraries (Drivers).