Generate realistic voice conversions and text-to-speech
curl -X POST "https://api.truly.ws/playground/text-to-speech" \ -H "Authorization: Bearer YOUR_API_KEY" \ -F "text=Hello, this is a test of the text to speech API" \ -F "audio_file=@reference.wav"
Content-Type: audio/wav
{ "models": [ { "id": "male-deep", "name": "Male Deep Voice", "description": "Deep male voice with American accent" }, { "id": "female-neutral", "name": "Female Neutral", "description": "Neutral female voice with British accent" } ] }
curl -X POST "https://api.truly.ws/playground/voice-conversion" \ -H "Authorization: Bearer YOUR_API_KEY" \ -F "model_id=male-deep" \ -F "pitch_shift=2" \ -F "audio_file=@input.wav"
GET /playground/audio/converted_voice_male-deep.wav