Romanian Text to SpeechRomână
Generate natural-sounding Romanian audio via REST API. 10 voices, Latin script, free 10K chars/month — no credit card.
Bun venit la Audexum — sinteză vocală pentru dezvoltatori și creatori de conținut.
Try this in the playground →- Correct Romanian diacritics: ă, â, î, ș, ț — especially ș and ț (s-comma and t-comma, not cedilla)
- Growing Romanian tech ecosystem in Bucharest, Cluj, Iași needs affordable TTS
- All 33 languages same price — no Romanian surcharge
- EU-hosted — GDPR-compliant for Romanian B2C products
ElevenLabs supports Romanian. Google Cloud TTS supports Romanian at $16/1M. Audexum is €8/1M — half the Google price, with a free tier and bundled dictation.
Romanian tech and e-commerce
Romania's e-commerce sector (eMAG, Altex) and growing SaaS ecosystem need Romanian TTS for product notifications, accessibility, and customer-service automation.
Audexum integrates as a single REST endpoint — no SDK required. Send your Romanian text, receive WAV audio. The free tier (10K chars/month) covers prototyping; paid plans start at €4/month for 100K characters.
First Romanian audio in 60 seconds.
The Romanian language code is ro — 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": "Bun venit la Audexum.",
"voice": "F1",
"lang": "ro"
}' \
--output output.wavimport requests
response = requests.post(
"https://audexum.com/api/synthesize",
headers={
"Authorization": f"Bearer {AUDEXUM_KEY}",
"Content-Type": "application/json",
},
json={
"text": "Bun venit la Audexum.",
"voice": "F1",
"lang": "ro",
},
)
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 Romanian.
Romanian TTS — same price as English.
No language surcharge. Romanian 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 render Romanian ș and ț?+
Yes. Romanian uses comma-below diacritics (ș, ț) — not cedillas (ş, ţ) — and the synthesis model handles both encodings correctly, producing the correct dental/alveolar fricative and affricate.
Is Romanian on the free tier?+
Yes. Romanian is available on the 10,000 char/month free plan — no credit card required.
How does Audexum price compare to Google Cloud TTS for Romanian?+
Google Cloud TTS charges $16/1M chars for Romanian. Audexum's PAYG rate is €8/1M — roughly half the Google price. Audexum also includes a free monthly quota and bundled dictation at no extra cost.
Can Audexum be used for Romanian customer service automation?+
Yes. The REST API is low-latency and supports streaming-style batch generation. For IVR or chatbot TTS, you call /api/synthesize with your Romanian text and receive WAV audio — suitable for telephony or in-app playback.
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 Romanian TTS free.
10,000 characters per month, no credit card. First Romanian WAV in your terminal in 60 seconds.
Questions? [email protected]