Skip to main content
GET
/
healthz
Health check (k8s)
curl --request GET \
  --url https://api.callaro.ai/healthz
const options = {method: 'GET'};

fetch('https://api.callaro.ai/healthz', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
import requests

url = "https://api.callaro.ai/healthz"

response = requests.get(url)

print(response.text)
{
  "error": "<string>",
  "error_code": "<string>",
  "request_id": "<string>",
  "details": {},
  "errors": [
    "<string>"
  ]
}

Response

OK