callBackUrl parameter to receive automatic notifications when generation completes, rather than polling the status endpoint.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": "task_elevenlabs_1765185448724",
"recordId": "elevenlabs_1765185448724"
}
}