curl --location 'https://api.kie.ai/api/v1/jobs/createTask' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"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": "EkK5I93UQWFDigLMpZcX"
},
{
"text": "a happy dog",
"voice": "Z3R5wn05IrDiVCyEkUrK"
},
{
"text": "a happy cat",
"voice": "NNl6r8mD7vthiJatiJt1"
}
],
"stability": 0.5
}
}'