Korean Text to Speech한국어
Generate natural-sounding Korean audio via REST API. 10 voices, Hangul script, free 10K chars/month — no credit card.
Audexum에 오신 것을 환영합니다. 개발자와 콘텐츠 크리에이터를 위한 음성 합성 서비스입니다.
Try this in the playground →- Full Hangul syllabic block support — correct reading of all Korean syllable combinations
- Correct Korean consonant assimilation and liaison rules (연음, 자음동화)
- Korea's tech sector (Samsung, Kakao, Naver, Krafton) needs affordable Korean TTS
- Cheaper than Google TTS at high volumes, with a free tier Google lacks
Google Cloud TTS supports Korean at $16/1M. ElevenLabs supports Korean at premium pricing. Audexum is €8/1M with correct consonant assimilation and a free tier.
Korean gaming, K-content, and tech
Korea's gaming (Krafton, NCSoft, Netmarble), K-drama subtitle narration, and rapidly expanding tech sector create strong demand for affordable, accurate Korean TTS.
Audexum integrates as a single REST endpoint — no SDK required. Send your Korean text, receive WAV audio. The free tier (10K chars/month) covers prototyping; paid plans start at €4/month for 100K characters.
First Korean audio in 60 seconds.
The Korean language code is ko — 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에 오신 것을 환영합니다.",
"voice": "F1",
"lang": "ko"
}' \
--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에 오신 것을 환영합니다.",
"voice": "F1",
"lang": "ko",
},
)
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 Korean.
Korean TTS — same price as English.
No language surcharge. Korean 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 Korean consonant assimilation?+
Yes. Korean has several sandhi rules — consonants change pronunciation based on surrounding sounds (e.g. 학교 is pronounced /학꾜/ not /학교/). These assimilation rules are applied automatically.
Is Korean on the free tier?+
Yes. Korean is available on the 10,000 char/month free plan — no credit card required.
Can Audexum Korean TTS be used for K-content subtitle narration?+
Yes. K-drama and K-pop content creators use TTS for automated narration of Korean subtitles. The WAV output is suitable for video editing tools like Premiere Pro and DaVinci Resolve.
How does Audexum Korean pricing compare to Google TTS?+
Google Cloud TTS charges $16/1M chars. Audexum is €8/1M — half the price. Audexum also includes a free monthly quota and bundled dictation, which Google TTS does not offer.
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 Korean TTS free.
10,000 characters per month, no credit card. First Korean WAV in your terminal in 60 seconds.
Questions? [email protected]