POST TTS Inference

Create new VC Inference Job

POST /v1/inferences-tts

Creates a voice conversions inference job and adds it to the inference queue.

Headers

NameValue

Content-Type

application/json

x-api-key

<token>

Body Parameters

NameTypeDescription

tts_text

text

text to be processed by the IA. Limit of 1000 characters.

tts_voice

text

name to TTS model.

You can see the available models for "tts_voice" in Types & Limits > List TTS Models .

Response

{
    "inferenceId": "123x456",
    "modelId": "123x456",
    "status": "RUNNING",
    "type": "TTS",
    "inferenceUrl": null,
    "jobStartTime": "2024-01-01 20:15:50.428000 +00:00",
    "jobEndTime": null
}

Last updated