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