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/image-to-video",
"callBackUrl": "https://your-domain.com/api/callback",
"input": {
"prompt": "一只快乐的金毛猎犬在草地上奔跑",
"image_urls": [
"https://example.com/first-frame.jpg"
],
"customize_multi_shots": true,
"audio": false,
"resolution": "720p",
"aspect_ratio": "16:9",
"duration": 5,
"elements": []
}
}'{
"code": 200,
"msg": "success",
"data": {
"taskId": "task_kling-2.6_1765182425861"
}
}