Voices

Get user voices or system voices

get

Supports pagination and filtering by voice type.

Authorizations
AuthorizationstringRequired
Query parameters
voice_typestring · enumOptional

Voice type filter. "custom" for user-created voices (default), "built-in" for system voices.

Default: customPossible values:
keywordstringOptional

Search keyword (searches voice name, description, labels)

skipintegerOptional

Page number (starts from 0)

Default: 0
limitintegerOptional

Maximum number of items to return per page

Default: 10
Responses
chevron-right
200

Success

application/json
codeintegerOptional
messagestringOptional
get
/voices

Clone a voice

post

Clone a voice by uploading an audio file or providing an audio URL. Provide either file (upload) or voice_url (remote URL), at least one is required. Only WAV, MP3, and M4A formats are supported.

Authorizations
AuthorizationstringRequired
Body
filestring · binaryOptional

Audio file to upload (WAV, MP3, or M4A). Either file or voice_url must be provided.

voice_urlstringOptional

URL to a remote audio file (WAV, MP3, or M4A). Either file or voice_url must be provided.

display_namestringOptional

Display name for the cloned voice

denoisebooleanOptional

Whether to apply noise reduction to the audio

languagestringOptional

Language of the audio (e.g. "en", "zh")

Responses
chevron-right
200

Success

application/json
codeintegerOptional

Status code (0 = success)

messagestringOptional
post
/voices

Get voice details

get
Authorizations
AuthorizationstringRequired
Path parameters
voice_idstringRequired
Responses
chevron-right
200

Success

application/json
codeintegerOptional
messagestringOptional
get
/voices/{voice_id}
HTTP

Delete a voice (soft delete)

delete

Soft delete a voice by setting delete_time. The voice won't be physically removed from storage.

Authorizations
AuthorizationstringRequired
Path parameters
voice_idstringRequired

The ID of the voice to delete

Responses
chevron-right
200

Success

application/json
codeintegerOptional
messagestringOptional
delete
/voices/{voice_id}
HTTP

Last updated