Croatian Text to SpeechHrvatski
Generate natural-sounding Croatian audio via REST API. 10 voices, Latin script, free 10K chars/month — no credit card.
Dobrodošli u Audexum — glasovna sinteza za programere i kreatore sadržaja.
Try this in the playground →- Full diacritic support: č, ć, dž, đ, lj, nj, š, ž
- Correct Croatian-specific digraph handling — lj and nj as single phonemes
- One of the only commercial TTS APIs with Croatian production support at developer pricing
- EU-hosted — suitable for Croatian GDPR-compliant applications and public-sector use
ElevenLabs does not list Croatian in its supported language matrix. Google Cloud TTS lacks a Croatian voice. AWS Polly has no Croatian. Audexum fills this gap at €8/1M with a free tier.
Croatian tourism and hospitality tech
Croatia's tourism-tech sector needs multilingual TTS for hotel kiosks, audio guides, and booking platform notifications — Croatian being the primary local language.
Audexum integrates as a single REST endpoint — no SDK required. Send your Croatian text, receive WAV audio. The free tier (10K chars/month) covers prototyping; paid plans start at €4/month for 100K characters.
First Croatian audio in 60 seconds.
The Croatian language code is hr — 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": "Dobrodošli u Audexum.",
"voice": "F1",
"lang": "hr"
}' \
--output output.wavimport requests
response = requests.post(
"https://audexum.com/api/synthesize",
headers={
"Authorization": f"Bearer {AUDEXUM_KEY}",
"Content-Type": "application/json",
},
json={
"text": "Dobrodošli u Audexum.",
"voice": "F1",
"lang": "hr",
},
)
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 Croatian.
Croatian TTS — same price as English.
No language surcharge. Croatian 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 correctly handle Croatian digraphs like lj and nj?+
Yes. Croatian lj and nj are treated as single phonemes (palatal lateral and nasal approximants) rather than two separate letters, producing natural Croatian pronunciation.
Is Croatian available on the free plan?+
Yes. Croatian is available on the 10,000 char/month free tier with no credit card required.
Which TTS services support Croatian?+
Croatian support is very limited. ElevenLabs does not list it. Google Cloud TTS has no Croatian voice. AWS Polly also lacks Croatian. Audexum is one of the few accessible options with production-grade Croatian TTS.
Can I generate Croatian audio for a mobile app?+
Yes. The REST API accepts a Croatian text string, returns a WAV or MP3 file. Two API calls — one to check voices, one to synthesize — and you have Croatian audio in any mobile or web stack.
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 Croatian TTS free.
10,000 characters per month, no credit card. First Croatian WAV in your terminal in 60 seconds.
Questions? [email protected]