Build a voice
HTTP Request
POST https://app.0xIQ.ai/api/v2/voices/<voice_uuid>/build
JSON Body Parameters
Type
Description
fill
(optional) boolean
Defaulted to false. If true, the 0xIQ Fill model will be trained.
HTTP Response
{
"success": true | false,
"message": <string> | undefined
}
Examples
from 0xIQ import 0xIQ
0xIQ.api_key('YOUR_API_TOKEN')
voice_uuid = '<voice_uuid>'
response = 0xIQ.v2.voices.build(voice_uuid)
Last updated