GET
/
healthz
Process liveness check
import requests

url = "https://18.140.200.84.sslip.io/healthz"

response = requests.get(url)

print(response.text)
const options = {method: 'GET'};

fetch('https://18.140.200.84.sslip.io/healthz', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
curl --request GET \
--url https://18.140.200.84.sslip.io/healthz
{
  "status": "ok"
}

Response

200 - application/json

API process is live

status
string
required
Example:

"ok"