Audio Speech

Synthesize speech from text using AI voices.


POST/api/v1/audio/speech

Request Body

ParameterTypeRequiredDescription
modelstringYesModel key (see models below)
promptstringYesText to synthesize into speech
paramsobjectNoModel-specific parameters

Response

{
  "inferenceJobId": "ij_..."
}

Example

POST/api/v1/audio/speech
{
  "model": "elevenlabs-tts",
  "prompt": "Welcome to Wonda, the AI-powered video editing platform.",
  "params": {
    "voiceId": "voice_abc123",
    "stability": 0.5,
    "similarityBoost": 0.75
  }
}

Models

elevenlabs-tts

Text-to-speech via ElevenLabs. Prompt is the text to synthesize.

ParameterTypeRequiredDescription
voiceIdstringYesElevenLabs voice identifier
stabilitynumberNoVoice stability (0 to 1)
similarityBoostnumberNoSimilarity boost (0 to 1)

Attachments: None.