status will always be ok whenever a 200 response is provided.
Clients can check response data or response status code to confirm health.
Get API health status
from neptune_api_v2 import NeptuneAPIV2
client = NeptuneAPIV2()
response = client.status.check_health()
print(response.status){
"status": "ok"
}Returns Examples
{
"status": "ok"
}