Endpoints
Health Check
Check that the MenaVoice API is up
GET
Try itcurl https://api.menavoice.ai/api/healthimport requests
print(requests.get("https://api.menavoice.ai/api/health", timeout=10).json())const response = await fetch("https://api.menavoice.ai/api/health");
console.log(await response.json());{
"status": "ok",
"timestamp": "2026-09-19T10:30:00.000Z"
}Reports whether the MenaVoice API is up. Use it for uptime monitoring or a quick connectivity check. It's public: no API key needed, and it isn't billed or rate-limited like the other endpoints.
Was this page helpful?

