Skip to content
Portuguese TTS

Portuguese Text to SpeechPortuguês

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

Sample — Portuguese (pt-PT)

Bem-vindo ao Audexum — síntese de voz para programadores e criadores de conteúdo.

Try this in the playground →
Why Audexum for Portuguese
  • Correct Portuguese nasal diphthongs: ão, ãe, em, im — a key naturalness requirement
  • Portuguese is the 6th most spoken language globally — large market for TTS
  • Brazil's massive tech ecosystem creates especially high demand for Portuguese TTS
  • All plans include Portuguese at no surcharge
Competitor coverage

ElevenLabs supports Portuguese at $22+/mo for 100K chars. Google Cloud TTS is $16/1M. Audexum is €8/1M with correct nasal diphthong rendering.

Use case

Brazilian Portuguese content pipelines

Brazil's massive creator economy — YouTube, Spotify Brazil, e-learning platforms (Alura, Descomplica) — generates high demand for affordable Portuguese TTS at scale.

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

Portuguese API

First Portuguese audio in 60 seconds.

The Portuguese language code is pt — 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": "Bem-vindo ao Audexum.",
    "voice": "F1",
    "lang": "pt"
  }' \
  --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": "Bem-vindo ao Audexum.",
        "voice": "F1",
        "lang": "pt",
    },
)
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 Portuguese.

Pricing

Portuguese TTS — same price as English.

No language surcharge. Portuguese 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
Is Audexum's Portuguese European or Brazilian?+

The Portuguese voice model is trained on a neutral Portuguese that is intelligible in both European and Brazilian contexts. Brazilian Portuguese has distinct vowel quality and prosody — for content specifically targeting Brazil, the accent will be perceived as slightly European.

Does Audexum correctly render Portuguese nasal diphthongs?+

Yes. Portuguese nasal diphthongs (ão, ãe, õe, em/ém, im/ím) are phonetically complex. Audexum renders them with the correct nasalization, not as plain oral vowels.

Is Portuguese on the free tier?+

Yes. Portuguese is available on the 10,000 char/month free plan — no credit card.

What's the API call for Portuguese TTS?+

POST to https://audexum.com/api/synthesize with body: { "text": "Bem-vindo ao Audexum.", "voice": "F1", "lang": "pt" }. Authorization: Bearer YOUR_KEY. Returns WAV audio.

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

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

Questions? [email protected]