Skip to content
Slovak TTS

Slovak Text to SpeechSlovenčina

Generate natural-sounding Slovak audio via REST API. 10 voices, Latin script, free 30,000 credits/month — no credit card.

Sample — Slovak (sk-SK)

Vitajte v Audexum — hlasová syntéza pre vývojárov a tvorcov obsahu.

Try this in the playground →
Why Audexum for Slovak
  • Full Slovak diacritic support: á, ä, č, ď, dz, dž, é, í, ľ, ĺ, ň, ó, ô, ŕ, š, ť, ú, ý, ž
  • Correct ľ phoneme — the soft l unique to Slovak
  • Switch from Czech to Slovak with a single parameter change — same REST endpoint
  • EU-hosted — appropriate for Slovak public-sector and GDPR-compliant workloads
Competitor coverage

ElevenLabs supports Slovak on Multilingual v2, at roughly $182/1M on its Creator plan. Google Cloud TTS has no Slovak neural voice. AWS Polly lacks Slovak. Audexum is one of the few commercial APIs with production Slovak TTS.

Use case

Slovak e-learning and digital media

Slovak public broadcasting and e-learning platforms need high-quality Slovak TTS for accessibility, automated narration, and digital content pipelines.

Audexum integrates as a single REST endpoint — no SDK required. Send your Slovak text, receive WAV audio. The free tier (30,000 credits/month) covers prototyping; paid plans start at €4/month for 250,000 credits.

Slovak API

First Slovak audio in 60 seconds.

The Slovak language code is sk — 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": "Vitajte v Audexum.",
    "voice": "F1",
    "lang": "sk"
  }' \
  --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": "Vitajte v Audexum.",
        "voice": "F1",
        "lang": "sk",
    },
)
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 Slovak.

Pricing

Slovak TTS — same price as English.

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

PlanCredits/moPrice
Free30,000 credits€0 / mo
Starter250,000 credits€4 / mo
Pro1,200,000 credits€12 / mo
Scale4,000,000 credits€30 / mo
Business15,000,000 credits€99 / mo
Pay-as-you-goUnlimited€20 / 1M credits

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

FAQ
Does Audexum handle Slovak-specific letters like ľ and ŕ?+

Yes. Slovak's unique letters — ľ (soft l), ŕ (syllabic r), ĺ (syllabic l), and ô (rounded o) — are all rendered with their correct phonemic values.

Is Slovak included in the free tier?+

Yes. Slovak is available on the 30,000 credits/month free plan with no credit card required.

How does Slovak support compare to Czech?+

Both languages are first-class citizens on the Audexum API. You switch between them by changing the `lang` parameter — `cs` for Czech, `sk` for Slovak. Same voice, same REST endpoint, same pricing.

Which competitors support Slovak TTS?+

Few, and none cheaply. ElevenLabs covers Slovak on Multilingual v2 at roughly $182/1M. Google Cloud TTS lacks a Slovak neural voice. AWS Polly has no Slovak. Audexum fills this gap at €10/1M on the Pro plan with a free tier.

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

30,000 credits per month, no credit card. First Slovak WAV in your terminal in 60 seconds.

Questions? [email protected]