Voice Models API
Create Model
This endpoint creates a new AI voice model. The model is created in a pending state. You must train the model before it can be used for synthesis.
POST
/
models
/
create
Request
training_audio_files
.zip file
requiredA zip file containing the training audio files. The zip file must contain the following files:
model.json
- a JSON file containing the model metadata.audio
- a folder containing the audio files.
Response
model_id
string
The ID of the pending model. After training the model, this ID can be used to reference the model in other API calls.