Documentation Index
Fetch the complete documentation index at: https://docs.destined.ai/llms.txt
Use this file to discover all available pages before exploring further.
Request Body
ID of the speaker to use for synthesis
Text to convert to speech (max 2000 characters)
Response
URL to the generated audio file (WAV format)
Duration of the generated audio
Number of characters consumed
curl -X POST "https://api.destined.ai/v1/tts/synthesize" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"speaker_id": "abc123-def456",
"text": "Hello, this is a test of the Destined Voice API."
}'
{
"audio_url": "https://voice.s3.amazonaws.com/audio/gen_abc123.wav",
"duration_seconds": 3.2,
"characters_used": 47
}