Health
Check that the API is up. No API key needed.
Endpoints
Health check
GET
api.app.typetone.ai/public/v1/healthz curl "https://api.app.typetone.ai/public/v1/healthz" import os
import requests
response = requests.get(
"https://api.app.typetone.ai/public/v1/healthz",
)
response.raise_for_status()
print(response.json()) const response = await fetch("https://api.app.typetone.ai/public/v1/healthz", {
headers: {
},
});
const data = await response.json(); Something unclear or missing? Tell us and we'll improve this page.