curl --location --request POST 'https://api.kie.ai/api/v1/jobs/createTask' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "elevenlabs/text-to-dialogue-v3",
"callBackUrl": "https://your-domain.com/api/callback",
"input": {
"dialogue": [
{
"text": "I have a pen, I have an apple, ah, Apple pen~",
"voice": "Adam"
},
{
"text": "a happy dog",
"voice": "Brian"
},
{
"text": "a happy cat",
"voice": "Roger"
}
],
"stability": 0.5
}
}'{
"code": 200,
"msg": "success",
"data": {
"taskId": "281e5b0*********************f39b9",
"recordId": "elevenlabs_12345678"
}
}