provider text-to-dialogue POST
/v1/text-to-dialogue/with-timestamps @utdk/elevenlabs
/v1/text-to-dialogue/with-timestamps Text To Dialogue With Timestamps
Generate dialogue from text with precise character-level timing information for audio-text synchronization.
- output_format query
- Output format of the generated audio. Formatted as codec_sample_rate_bitrate. So an mp3 with 22.05kHz sample rate at 32kbs is represented as mp3_22050_32. MP3 with 192kbps bitrate requires you to be subscribed to Creator tier or above. PCM and WAV formats with 44.1kHz sample rate requires you to be subscribed to Pro tier or above. Note that the μ-law format (sometimes written mu-law, often approximated as u-law) is commonly used for Twilio audio inputs.
- xi-api-key header
- Your API key. This is required by most endpoints to access our API programmatically. You can view your xi-api-key using the 'Profile' tab on the website.
Try it
Authentication
Configure credentials for ElevenLabs API Documentation
Gateway
The gateway proxies requests and injects credentials server-side. Configure credentials above, then enter your gateway URL.
Saved automatically to browser storage.
Code snippet
Updates live as you fill in the form above.
TypeScript
import elevenlabs from '@utdk/elevenlabs';
await elevenlabs.textToDialogueFullWithTimestamps({
"output_format": "mp3_44100_128",
"model_id": "eleven_v3",
"apply_text_normalization": "auto"
})