Turkish Text to SpeechTürkçe
Generate natural-sounding Turkish audio via REST API. 10 voices, Latin script, free 10K chars/month — no credit card.
Audexum'a hoş geldiniz — geliştiriciler ve içerik üreticileri için metin okuma hizmeti.
Try this in the playground →- Correct vowel harmony — Turkish front/back and round/unround harmony across suffixes
- Turkish agglutinative morphology handled correctly — words with many suffixes rendered naturally
- Turkey's large tech sector (Trendyol, Hepsiburada, Getir) creates strong Turkish TTS demand
- EU-adjacent market — many Turkish devs use EU-hosted services for GDPR alignment
Google Cloud TTS supports Turkish at $16/1M. ElevenLabs supports Turkish at premium pricing. Audexum is €8/1M with vowel harmony applied across inflected forms.
Turkish e-commerce and voice assistants
Trendyol, Hepsiburada, Getir, and Turkey's thriving e-commerce and delivery sector need Turkish TTS for order notifications, customer service, and accessibility.
Audexum integrates as a single REST endpoint — no SDK required. Send your Turkish text, receive WAV audio. The free tier (10K chars/month) covers prototyping; paid plans start at €4/month for 100K characters.
First Turkish audio in 60 seconds.
The Turkish language code is tr — 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": "Audexum'a hoş geldiniz.",
"voice": "F1",
"lang": "tr"
}' \
--output output.wavimport requests
response = requests.post(
"https://audexum.com/api/synthesize",
headers={
"Authorization": f"Bearer {AUDEXUM_KEY}",
"Content-Type": "application/json",
},
json={
"text": "Audexum'a hoş geldiniz.",
"voice": "F1",
"lang": "tr",
},
)
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 Turkish.
Turkish TTS — same price as English.
No language surcharge. Turkish 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 apply Turkish vowel harmony in suffixes?+
Yes. Turkish vowel harmony requires that all vowels in suffixes agree with the vowel in the root in terms of frontness and roundedness. This is applied correctly across all inflected and derived forms.
Is Turkish on the free tier?+
Yes. Turkish is available on the 10,000 char/month free plan — no credit card required.
How does Audexum compare to Google TTS for Turkish?+
Google Cloud TTS charges $16/1M chars. Audexum is €8/1M — half the price — with a free monthly quota and bundled dictation.
Can Audexum Turkish TTS be used for IVR systems?+
Yes. Turkish IVR (interactive voice response) is a common use case. The REST API returns WAV audio that you can transcode to the 8kHz/16kHz mu-law format that PSTN telephony systems require.
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 Turkish TTS free.
10,000 characters per month, no credit card. First Turkish WAV in your terminal in 60 seconds.
Questions? [email protected]