curl --location 'https://api.kie.ai/api/v1/jobs/createTask' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"model": "kling-3.0-omni/text-to-video",
"callBackUrl": "https://your-domain.com/api/callback",
"input": {
"prompt": "A wide shot of the fox entering the snowy forest.",
"customize_multi_shots": true,
"multi_prompt": [
{
"prompt": "A wide shot of the fox entering the snowy forest.",
"duration": 2
},
{
"prompt": "A cinematic close-up of the fox looking toward the sunrise.",
"duration": 3
}
],
"audio": false,
"resolution": "720p",
"aspect_ratio": "16:9",
"duration": 5
}
}'