Siti - Ad Narrator
Ultra Indonesian female: Ad Narrator. Direct, production-grade.
Language: Indonesian
Country: Indonesia
Gender: Female
Accent: Indonesian
Generate lifelike Indonesian speech across a wide range of voices and every major accent, over carrier-grade infrastructure built for voice agents and IVR.
Pay as you go from ~$3 per 1M characters, no commitment
Built on the same infrastructure thousands of teams ship voice on
Indonesian voices across every major regional accent. Hear them below, or browse the full catalog by country.
Generate Indonesian audio in one request. OpenAI-SDK compatible, with streaming for real-time apps.
curl -X POST https://api.telnyx.com/v2/text-to-speech/speech \
-H "Authorization: Bearer $TELNYX_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"voice": "Telnyx.NaturalHD.id-ID-1",
"text": "Resep Anda sudah siap untuk diambil di apotek."
}' --output sample.mp3import OpenAI from "openai";
const client = new OpenAI({
apiKey: process.env.TELNYX_API_KEY,
baseURL: "https://api.telnyx.com/v2",
});
const audio = await client.audio.speech.create({
model: "Telnyx.NaturalHD",
voice: "id-ID-1",
input: "Resep Anda sudah siap untuk diambil di apotek.",
});from openai import OpenAI
client = OpenAI(
api_key=os.environ["TELNYX_API_KEY"],
base_url="https://api.telnyx.com/v2",
)
audio = client.audio.speech.create(
model="Telnyx.NaturalHD",
voice="id-ID-1",
input="Resep Anda sudah siap untuk diambil di apotek.",
)Voice IDs follow the Telnyx.<Tier>.<Voice> convention, so you can swap the voice without touching the rest of your code.
Read the TTS docsNatural Indonesian phone agents that handle calls end-to-end, carrier-grade.
Bilingual support flows that resolve common requests without a queue.
Narrate Indonesian courses and lessons in any regional accent.
Long-form Indonesian narration with consistent, lifelike delivery.
Localize content into Indonesian at scale with named native voices.
Indonesian screen-reading and read-aloud for inclusive products.
The delivery path, model breadth, low-latency pipeline, and economics behind every voice above.
24 kHz audio has to survive the phone network. Without a carrier-grade delivery path it gets crushed to 8 kHz, throwing away the quality the model produced. Own the delivery, or the voice degrades before anyone hears it.
No single engine wins every language, accent, and budget. Front many models (Telnyx, AWS Polly, Rime, Inworld, ElevenLabs, and more) behind one API so you can swap by config instead of re-integrating each time.
For voice agents and IVR, TTS alone isn't enough: TTS, STT, LLM, SIP and numbers belong in one path under ~500ms end-to-end, or the back-and-forth feels laggy and robotic.
Predictable per-character, pay-as-you-go pricing, no seats, minimums, or surprise overage tiers, is what keeps quality voice affordable once you scale past a demo.
Owned infrastructure in 20+ countries, PSTN reach in 100+ countries, used by 14,000+ companies.
| Model | Per character | Per 1M characters |
|---|---|---|
| Telnyx (standard) | $0.000003 / char | ~$3 / 1M chars |
| Telnyx HD | $0.000048 / char | ~$48 / 1M chars |
| Bring-your-own (ElevenLabs, Azure) | Your provider's rate | Billed through Telnyx |
Qualifying startups can apply to the Telnyx startups program for up to $20K in credits. Volume discounts available on the Growth Plan.
Start buildingIndonesian voices, carrier-grade delivery, from ~$3 per 1M characters.
Pay as you go. No commitment. Business email required.
Indonesian text to speech (TTS) converts written Indonesian into natural-sounding spoken audio using AI voices. Telnyx exposes Indonesian voices through one API for apps, IVR, and voice agents.
English is stress-timed[1]: stressed syllables land at regular intervals while unstressed ones compress and blur. Indonesian is the opposite: a syllable-timed language where each syllable carries roughly equal duration and prominence[2]. Where English turns "comfortable" into "CUMF-ter-bul," Indonesian keeps every syllable distinct and evenly spaced. A TTS system trained on English stress patterns imposes the wrong rhythmic skeleton entirely. Natural Indonesian synthesis requires inference that maintains even syllable timing end to end, with no inter-provider hops distorting that steady cadence.
English voiceless stops /p, t, k/ are produced with a noticeable puff of air at the start of stressed syllables[1]: the aspiration in "pin" or "top" that native speakers never notice. Indonesian uses the same phonemes but without aspiration[2], producing plain, unaspirated stops that sound softer to English ears. Indonesian also avoids the consonant clusters English relies on[3]: no "str-" or "spl-" onsets, preferring clean (C)V(C) syllables. Synthesis that carries over English-style aspiration sounds foreign on every plosive. The model has to run where audio is processed so these spectral differences survive intact.
English intonation is heavily structured around word-level stress[1], with dramatic pitch movements signaling questions, contrast, and emphasis. Indonesian intonation is less dramatic and organized around phrase-level boundary tones[2] rather than word-based accent: and its vowels stay clear and stable in unstressed positions[3] instead of reducing to [ə]. The result is a prosodic profile that sounds level and even where English rises and falls. Getting both the flat prosody and unreduced vowels right requires co-located inference: synthesis and telephony in the same facility, no signal degradation between them.