cURL
curl --request POST \ --url https://api.example.com/tts/change-voice \ --header 'Content-Type: application/json' \ --data ' { "speed": 123, "api_key": "<string>" } '
Adjust the playback speed of an audio file
curl -X POST https://api.gistmag.co.uk/tts/change-voice \ -F "audio=@speech.mp3" \ -F "speed=1.5" \ -F "api_key=your_api_key_here" \ --output faster_speech.mp3