Estonian Text to SpeechEesti
Generate natural-sounding Estonian audio via REST API. 10 voices, Latin script, free 30,000 credits/month — no credit card.
Tere tulemast Audexumi — kõnesüntees arendajatele ja sisuloojatele.
Try this in the playground →- Correct vowel length distinction — Estonian has three phonemic vowel lengths that most TTS models collapse into one
- Proper handling of Estonian diacritics: ä, ö, ü, õ
- One of the only commercial TTS APIs with genuine Estonian support at indie-dev pricing
- EU-hosted — fully compliant for Estonian government and public-sector use
ElevenLabs' Multilingual v2 and Flash v2.5 models do not cover Estonian. Google Cloud TTS supports Estonian at $16/1M chars. AWS Polly has no Estonian voice. Audexum is €10/1M on the Pro plan — cheaper than Google, with a free tier.
Estonian government and e-services
Estonia's digital-first government and e-residency ecosystem creates unique demand for Estonian TTS in public services, e-learning, and accessibility tooling.
Audexum integrates as a single REST endpoint — no SDK required. Send your Estonian text, receive WAV audio. The free tier (30,000 credits/month) covers prototyping; paid plans start at €4/month for 250,000 credits.
First Estonian audio in 60 seconds.
The Estonian language code is et — pass it as the lang parameter.
curl -X POST https://audexum.com/api/synthesize \
-H "Authorization: Bearer $AUDEXUM_KEY" \
-H "Content-Type: application/json" \
-d '{
"text": "Tere tulemast Audexumi.",
"voice": "F1",
"lang": "et"
}' \
--output output.wavimport requests
response = requests.post(
"https://audexum.com/api/synthesize",
headers={
"Authorization": f"Bearer {AUDEXUM_KEY}",
"Content-Type": "application/json",
},
json={
"text": "Tere tulemast Audexumi.",
"voice": "F1",
"lang": "et",
},
)
response.raise_for_status()
with open("output.wav", "wb") as f:
f.write(response.content)Full API reference: audexum.com/docs. All 10 voices (M1–M5, F1–F5) support Estonian.
Estonian TTS — same price as English.
No language surcharge. Estonian is included on every plan at the same rate as any other language.
PAYG credits never expire. All plans include STT (dictation) at no extra cost. Full pricing details →
Does Audexum handle Estonian vowel length?+
Yes. Estonian's three-way vowel length contrast (short, long, overlong) is preserved in synthesis. This is critical for intelligibility — words like 'lina' (sheet), 'linna' (city), and 'linnna' differ only by vowel length.
Is Estonian on the free tier?+
Yes. All 33 supported languages including Estonian are available on the 30,000 credits/month free tier — no credit card required.
Which TTS services support Estonian?+
Estonian support is rare. ElevenLabs' v2 and Flash models do not cover it. Google Cloud TTS does at $16/1M chars. Audexum supports it at €10/1M on the Pro plan with a free tier — making it the most accessible option for Estonian TTS.
Can I use Estonian TTS for an EU e-government project?+
Yes. Audexum is EU-hosted and GDPR-native. All audio generation stays on EU infrastructure, which satisfies Estonian GDPR and public-procurement residency requirements.
Audexum supports 33 languages.
Switch language with one parameter — same API endpoint, same pricing.
See the full 33-language list in the API docs or on the multilingual TTS guide.
Try Estonian TTS free.
30,000 credits per month, no credit card. First Estonian WAV in your terminal in 60 seconds.
Questions? [email protected]