Liveness check
GET/healthz
Always returns 200 and is exempt from auth, so probes work without a key.
Responses
200 OKOK
HealthResponse
statusstringAuthentication
bearerAuthHTTP bearer. Daemon API key. Omit on a keyless loopback daemon.Request
▍GET/healthz
curl '/healthz'const response = await fetch("/healthz", {
method: "GET",
});
const data = await response.json();import requests
response = requests.get(
"/healthz",
)
data = response.json()Response
200 OK
{
"status": "ok"
}