Health check
GET
/healthzResponses
200Service health
servicestringrequiredstatusstringrequiredversionstringrequiredRequest
curl -X GET "https://teakvault.com/api/healthz"const response = await fetch("https://teakvault.com/api/healthz", {
method: "GET"
});import requests
response = requests.get(
"https://teakvault.com/api/healthz",
)Response
{
"service": "string",
"status": "string",
"version": "string"
}