I am not able to access aura db, via HTTP method.
jon.giffard@neo4j.com
Are you trying to query the database using HTTP or access the Aura API for management of aura ?
If you are trying to query, then you would POST to https://<host>/db/<databaseName>/query/v2
An authorization header is needed with each request . That is formed from the username and password for the aura db. A guide to that is here:-
https://neo4j.com/docs/query-api/current/authentication-authorization/
The body of the request is where you specify your query. An example is
{
"statement": "MATCH (n) RETURN n LIMIT 1"
}
A fuller guide can be found here:- https://www.pm50plus.com/2024/09/06/aura-query-api-ga.html