Lithuanian Text to SpeechLietuvių
Generate natural-sounding Lithuanian audio via REST API. 10 voices, Latin script, free 30,000 credits/month — no credit card.
Sveiki atvykę į Audexum — kalbos sintezė kūrėjams ir turinio kūrėjams.
Try this in the playground →- Correct pitch-accent rendering — Lithuanian is a pitch-accent language, rare among TTS providers
- Full diacritic support: ą, č, ę, ė, į, š, ų, ū, ž
- One of the only commercial TTS APIs with pitch-accent-aware Lithuanian synthesis
- EU-hosted — suitable for Lithuanian public sector and GDPR-sensitive workloads
ElevenLabs' Multilingual v2 and Flash v2.5 models do not cover Lithuanian. Google Cloud TTS supports Lithuanian at $16/1M chars. Audexum is €10/1M on the Pro plan with a free tier.
Lithuanian language learning and accessibility
Lithuanian pitch-accent is among the most complex prosodic systems in European languages. Audexum's pitch-aware synthesis makes it viable for language learning tools where tonal accuracy matters.
Audexum integrates as a single REST endpoint — no SDK required. Send your Lithuanian text, receive WAV audio. The free tier (30,000 credits/month) covers prototyping; paid plans start at €4/month for 250,000 credits.
First Lithuanian audio in 60 seconds.
The Lithuanian language code is lt — 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": "Sveiki atvykę į Audexum.",
"voice": "F1",
"lang": "lt"
}' \
--output output.wavimport requests
response = requests.post(
"https://audexum.com/api/synthesize",
headers={
"Authorization": f"Bearer {AUDEXUM_KEY}",
"Content-Type": "application/json",
},
json={
"text": "Sveiki atvykę į Audexum.",
"voice": "F1",
"lang": "lt",
},
)
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 Lithuanian.
Lithuanian TTS — same price as English.
No language surcharge. Lithuanian 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 Lithuanian pitch accent?+
Yes. Lithuanian has a pitch-accent system with two tonal patterns (acute and circumflex) on stressed long vowels and diphthongs. The synthesis model is trained to reproduce these distinctions.
Is Lithuanian included in the free tier?+
Yes. Lithuanian and all 32 other supported languages are available on the 30,000 credits/month free tier — no card required.
Which TTS APIs support Lithuanian?+
Lithuanian support is uncommon among commercial APIs. ElevenLabs' v2 and Flash models do not cover it. Google Cloud TTS supports it at $16/1M. Audexum is €10/1M on the Pro plan with a free tier.
Is Lithuanian TTS suitable for e-learning?+
Yes, particularly for language learning applications. Correct pitch-accent rendering is important for learners — a wrong tone on a long vowel changes both the word's stress pattern and, in some cases, its meaning.
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 Lithuanian TTS free.
30,000 credits per month, no credit card. First Lithuanian WAV in your terminal in 60 seconds.
Questions? [email protected]