cURL
curl --request GET \ --url https://api.production.hyperoru.com/api/health \ --header 'Authorization: Bearer <token>'
{ "status": "<string>" }
Returns {"status":"ok"} whenever the process is responsive. Used by load balancers and orchestrators for liveness probes; does not perform deep dependency checks.
{"status":"ok"}
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Service is healthy
Liveness probe response.
"ok"
Was this page helpful?