Danish Text to SpeechDansk
Generate natural-sounding Danish audio via REST API. 10 voices, Latin script, free 10K chars/month — no credit card.
Velkommen til Audexum — talesyntese til udviklere og indholdsskabere.
Try this in the playground →- Correct stød (glottalization) — the unique Danish laryngeal feature most models omit
- Proper rendering of ø, å, æ vowels
- Danish is the de facto Scandinavian test case for Nordic TTS quality
- EU-hosted — GDPR-compliant for Danish B2C and public-sector use
Google Cloud TTS supports Danish at $16/1M. ElevenLabs supports Danish but at higher pricing tiers. Audexum is €8/1M with a free tier.
Danish e-government and fintech
Denmark's highly digitized public sector (NemID, MitID, Borger.dk) and fintech ecosystem (Lunar, Pleo, Vivid) need accessible, cost-effective Danish TTS.
Audexum integrates as a single REST endpoint — no SDK required. Send your Danish text, receive WAV audio. The free tier (10K chars/month) covers prototyping; paid plans start at €4/month for 100K characters.
First Danish audio in 60 seconds.
The Danish language code is da — 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": "Velkommen til Audexum.",
"voice": "F1",
"lang": "da"
}' \
--output output.wavimport requests
response = requests.post(
"https://audexum.com/api/synthesize",
headers={
"Authorization": f"Bearer {AUDEXUM_KEY}",
"Content-Type": "application/json",
},
json={
"text": "Velkommen til Audexum.",
"voice": "F1",
"lang": "da",
},
)
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 Danish.
Danish TTS — same price as English.
No language surcharge. Danish 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 Danish stød (glottalization)?+
Yes. Danish stød — the creaky voice or glottalization on certain vowels and sonorants — is a key naturalness marker. Audexum includes stød where it occurs in standard spoken Danish.
Is Danish on the free tier?+
Yes. Danish is available on the 10,000 char/month free plan — no credit card required.
How does Audexum compare to Google TTS for Danish?+
Google Cloud TTS charges $16/1M chars. Audexum's PAYG rate is €8/1M — half the price — with a free monthly quota and bundled dictation (STT) included at every tier.
Can I use Danish TTS for a smart home or voice assistant project?+
Yes. The REST API returns WAV audio at 24kHz which you can pipe to any audio output. Smart home projects often stream directly via a media player or Home Assistant TTS integration.
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 Danish TTS free.
10,000 characters per month, no credit card. First Danish WAV in your terminal in 60 seconds.
Questions? [email protected]