- Third-party
ElevenLabs' latest text-to-speech model for highly expressive, natural speech generation with advanced voice control.
| Model Info | |
|---|---|
| Terms and License | link ↗ |
| More information | link ↗ |
| Pricing | View pricing in the Cloudflare dashboard ↗ |
const response = await env.AI.run(
'elevenlabs/eleven-v3',
{
text: 'Welcome to Cloudflare AI Gateway. This is ElevenLabs speech synthesis with a natural, expressive delivery.',
voice_id: 'JBFqnCBsd6RMkjVDRZzb',
output_format: 'mp3_44100_128',
},
)
console.log(response)curl https://api.cloudflare.com/client/v4/accounts/$CLOUDFLARE_ACCOUNT_ID/ai/run \
--header "Authorization: Bearer $CLOUDFLARE_API_TOKEN" \
--header "Content-Type: application/json" \
--data '{
"model": "elevenlabs/eleven-v3",
"input": {
"text": "Welcome to Cloudflare AI Gateway. This is ElevenLabs speech synthesis with a natural, expressive delivery.",
"voice_id": "JBFqnCBsd6RMkjVDRZzb",
"output_format": "mp3_44100_128"
}
}'{
"state": "Completed",
"result": {
"audio": "https://examples.aig.cloudflare.com/elevenlabs/eleven-v3/expressive-speech.mp3"
},
"gatewayMetadata": {
"keySource": "Unified"
}
}text
stringrequiredminLength: 1maxLength: 10000The text to convert into speech.voice_id
stringrequiredminLength: 1The ElevenLabs voice ID to use for generation.output_format
stringenum: mp3_22050_32, mp3_24000_48, mp3_44100_128, mp3_44100_192, mp3_44100_32, mp3_44100_64, mp3_44100_96, opus_48000_128, opus_48000_192, opus_48000_32, opus_48000_64, opus_48000_96language_code
stringISO 639-1 language code to enforce.▶voice_settings{}
objectseed
integerminimum: 0maximum: 4294967295previous_text
stringnext_text
stringapply_text_normalization
stringenum: auto, on, offaudio
stringBase64-encoded data URI for the generated audio file.