Norwegian Text to SpeechNorsk
Generate natural-sounding Norwegian audio via REST API. 10 voices, Latin script, free 10K chars/month — no credit card.
Velkommen til Audexum — talesyntese for utviklere og innholdsskapere.
Try this in the playground →- Standard Norwegian (Bokmål) synthesis — the most widely used written Norwegian form
- Correct Norwegian pitch accent (tone 1 vs tone 2) — a key naturalness marker
- Norway's oil-fund-driven tech ecosystem creates demand for Norwegian TTS
- EU-adjacent, GDPR-aligned hosting — appropriate for Norwegian B2C products
Google Cloud TTS supports Norwegian at $16/1M. ElevenLabs supports Norwegian at premium pricing. Audexum is €8/1M with pitch accent rendered and a free tier.
Norwegian public sector and fintech
Norway's highly digitized public sector (Altinn, MinID) and fintech ecosystem (Vipps, DNB) need Norwegian TTS for accessibility and digital services.
Audexum integrates as a single REST endpoint — no SDK required. Send your Norwegian text, receive WAV audio. The free tier (10K chars/month) covers prototyping; paid plans start at €4/month for 100K characters.
First Norwegian audio in 60 seconds.
The Norwegian language code is na — 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": "na"
}' \
--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": "na",
},
)
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 Norwegian.
Norwegian TTS — same price as English.
No language surcharge. Norwegian 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 →
Is Audexum Norwegian Bokmål or Nynorsk?+
Audexum's Norwegian synthesis is trained on Bokmål, which is used by approximately 85–90% of Norwegian writers and is the standard in most digital products.
Does Audexum render Norwegian pitch accent?+
Yes. Norwegian has two tonal word accents — Accent 1 (single peak) and Accent 2 (double peak) — that distinguish word meaning and grammatical class. The synthesis includes pitch accent for natural Norwegian output.
Is Norwegian on the free tier?+
Yes. Norwegian is available on the 10,000 char/month free plan — no credit card required.
Can Audexum be used for Norwegian public-sector accessibility?+
Yes. Norway's accessibility requirements (Universal Design of ICT Act) apply to public websites and apps. Audexum's EU-hosted infrastructure aligns with Norwegian data residency expectations.
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 Norwegian TTS free.
10,000 characters per month, no credit card. First Norwegian WAV in your terminal in 60 seconds.
Questions? [email protected]