← Back to catalog

ElevenLabs Voice Design

Live
audiovoice

Design a new synthetic voice from a description plus preview text.

Endpoint

POSThttps://brahmand-api.bulletshorts.co/v1/audio/elevenlabs-voice-design

Authenticate with the X-API-Key request header.

Pricing

13 credits / call1 credit = ₹1. Billed on success: per generation.

List price. Volume / bulk customers get a discounted rate — contact us for account pricing.

Parameters

NameTypeRequiredDescriptionDefault / options
voice_descriptionstringrequiredDescription of the desired voice.
textstringoptionalPreview text the designed voice speaks (100-1000 chars). Required unless auto_generate_text is true.
model_idstringoptionalVoice design model (eleven_multilingual_ttv_v2, eleven_ttv_v3).
default: eleven_multilingual_ttv_v2
auto_generate_textbooleanoptionalAuto-generate preview text from the description.
default: false
loudnessnumberoptionalOutput loudness (-1 to 1).
default: 0.5
seednumberoptionalDeterministic seed (0-4294967295).
guidance_scalenumberoptionalPrompt adherence.
default: 5
qualitynumberoptionalOutput quality vs variety (-1 to 1).
output_formatstringoptionalAudio output format (e.g. mp3_44100_128).
default: mp3_44100_128

Request

curl
curl -X POST https://brahmand-api.bulletshorts.co/v1/audio/elevenlabs-voice-design \
  -H "X-API-Key: $TRINETRA_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"voice_description":"A warm, gravelly older male narrator with a slight British accent","text":"In a time long forgotten, when the mountains were young and the rivers ran clear, there lived a storyteller whose voice could calm the wildest of storms and stir the quietest of hearts to courage."}'
request body (JSON)
{
  "voice_description": "A warm, gravelly older male narrator with a slight British accent",
  "text": "In a time long forgotten, when the mountains were young and the rivers ran clear, there lived a storyteller whose voice could calm the wildest of storms and stir the quietest of hearts to courage."
}

Response

Submitting a job returns 202 Accepted with a job id. Poll GET /v1/jobs/{id} until the job reaches a terminal state, or register a webhook to be notified.

202 Accepted
{
  "job_id": "job_elevenlabsvoicedesign_a1b2c3",
  "status": "queued"
}
GET /v1/jobs/{id} → succeeded
{
  "id": "job_elevenlabsvoicedesign_a1b2c3",
  "model": "elevenlabs-voice-design",
  "status": "succeeded",
  "output": {
    "outputs": [
      {
        "url": "https://cdn.trinetra.ai/out/elevenlabs-voice-design/a1b2c3.mp3",
        "type": "audio"
      }
    ]
  },
  "credits_charged": 10
}

Webhook: set a webhook_url on your API key to receive a POST with the terminal job document instead of polling.