Health check
GET
/healthz
const url = 'https://api-dev.impulsehosting.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://api-dev.impulsehosting.com/healthzResponses
Section titled “Responses”Healthy
Media typetext/plain
string
Example
ok