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/reference-to-video",
"callBackUrl": "https://your-domain.com/api/callback",
"input": {
"prompt": "参考图片中的角色外观,生成角色在城市街道行走的视频。",
"image_urls": [
"https://example.com/character-reference.png"
],
"customize_multi_shots": true,
"multi_prompt": [
{
"prompt": "A wide shot of the character walking through the city.",
"duration": 2
},
{
"prompt": "A close-up of the character looking toward the camera.",
"duration": 3
}
],
"audio": true,
"resolution": "720p",
"aspect_ratio": "16:9",
"duration": 5,
"elements": []
}
}'