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": "A happy golden retriever running across a grassy field",
"image_urls": [
"https://example.com/first-frame.jpg"
],
"customize_multi_shots": true,
"audio": false,
"resolution": "720p",
"aspect_ratio": "16:9",
"duration": 5,
"elements": []
}
}'