Health
Liveness
GET
/
healthz
Liveness
curl --request GET \
--url https://api.opentype.dev/healthzconst options = {method: 'GET'};
fetch('https://api.opentype.dev/healthz', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.opentype.dev/healthz"
response = requests.get(url)
print(response.text){
"status": "<string>",
"service": "<string>"
}Liveness
curl --request GET \
--url https://api.opentype.dev/healthzconst options = {method: 'GET'};
fetch('https://api.opentype.dev/healthz', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.opentype.dev/healthz"
response = requests.get(url)
print(response.text){
"status": "<string>",
"service": "<string>"
}