Skip to content
Bulgarian TTS

Bulgarian Text to SpeechБългарски

Generate natural-sounding Bulgarian audio via REST API. 10 voices, Cyrillic script, free 10K chars/month — no credit card.

Sample — Bulgarian (bg-BG)

Добре дошли в Audexum — гласов API за разработчици и създатели на съдържание.

Try this in the playground →
Why Audexum for Bulgarian
  • Full Cyrillic script support — correct phoneme rendering for all Bulgarian letters including щ, ъ, ю, я
  • No extra cost for Bulgarian — same price as English at every plan tier
  • One of the only TTS APIs that lists Bulgarian as a first-class language, not a checkbox
  • EU-hosted infrastructure — ideal for Bulgarian GDPR-compliant products
Competitor coverage

ElevenLabs does not list Bulgarian in its supported language matrix. Google Cloud TTS supports Bulgarian but charges $16/1M chars vs Audexum's €8/1M. AWS Polly has no Bulgarian voice.

Use case

Bulgarian e-learning and accessibility

Bulgarian content creators, e-learning platforms, and accessibility tools need accurate Cyrillic TTS. Audexum renders Bulgarian with correct stress placement and soft/hard consonant distinction.

Audexum integrates as a single REST endpoint — no SDK required. Send your Bulgarian text, receive WAV audio. The free tier (10K chars/month) covers prototyping; paid plans start at €4/month for 100K characters.

Bulgarian API

First Bulgarian audio in 60 seconds.

The Bulgarian language code is bg — pass it as the lang parameter.

cURL
Example — Audexum REST API
curl -X POST https://audexum.com/api/synthesize \
  -H "Authorization: Bearer $AUDEXUM_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "text": "Добре дошли в Audexum.",
    "voice": "F1",
    "lang": "bg"
  }' \
  --output output.wav
Python
Example — Audexum REST API
import 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": "bg",
    },
)
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 Bulgarian.

Pricing

Bulgarian TTS — same price as English.

No language surcharge. Bulgarian is included on every plan at the same rate as any other language.

PlanChars/moPrice
Free10,000€0 / mo
Starter100,000€4 / mo
Pro500,000€12 / mo
Scale2,000,000€30 / mo
Pay-as-you-goUnlimited€8 / 1M chars

PAYG credits never expire. All plans include STT (dictation) at no extra cost. Full pricing details →

FAQ
Does Audexum support the Bulgarian Cyrillic alphabet?+

Yes. All 30 Bulgarian Cyrillic characters are rendered correctly, including letters like щ (shch), ъ (schwa), ж (zh), and digraphs. The model handles standard Bulgarian orthography without phoneme hints.

Can I generate Bulgarian audio without a credit card?+

Yes. The free tier gives you 10,000 characters per month with no card required. That's roughly 90–120 seconds of natural-speed Bulgarian audio.

Which TTS competitors support Bulgarian?+

Very few. ElevenLabs does not list Bulgarian. Google Cloud TTS supports it but costs $16/1M chars. AWS Polly has no Bulgarian voice. Audexum is one of the only affordable options with genuine Bulgarian support.

What voice should I use for Bulgarian content?+

Any of the 10 Audexum voices (M1–M5, F1–F5) can synthesize Bulgarian. For narration and e-learning, F1 and M2 tend to produce the clearest diction at moderate speeds.

Other languages

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 Bulgarian TTS free.

10,000 characters per month, no credit card. First Bulgarian WAV in your terminal in 60 seconds.

Questions? [email protected]