API Reference
Voice To Voice Conversion
POST
/
tts
/
convert
Authorization
Body
curl --request POST \
--url https://api.uberduck.ai/tts/convert \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--data '{
"input": "<string>",
"mix": [
{
"type": "audio",
"url": "<string>"
}
],
"pitch_shift": 123,
"reference_audio_uuid": "<string>",
"voicemodel_uuid": "<string>"
}'
"<any>"
Authorizations
Authorization
string
headerrequiredThe access token received from the authorization server in the OAuth 2.0 flow.
Body
application/json
input
string
mix
object[]
pitch_shift
integer
default: 0reference_audio_uuid
string
voicemodel_uuid
string
requiredResponse
200 - application/json
The response is of type any
.
curl --request POST \
--url https://api.uberduck.ai/tts/convert \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--data '{
"input": "<string>",
"mix": [
{
"type": "audio",
"url": "<string>"
}
],
"pitch_shift": 123,
"reference_audio_uuid": "<string>",
"voicemodel_uuid": "<string>"
}'
"<any>"