Health check
GET
/healthz
const url = 'https://hitkeep.com/healthz';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://hitkeep.com/healthzLiveness endpoint.
Responses
Section titled “ Responses ”OK