curl --location 'https://api.kie.ai/api/v1/jobs/createTask' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"model": "gemini-omni-video",
"callBackUrl": "https://your-domain.com/api/callback",
"input": {
"prompt": "Create a futuristic night city short film with a slow push-in shot as the character walks out from a neon-lit street.",
"image_urls": [
"https://example.com/assets/scene-1.png",
"https://example.com/assets/scene-2.png"
],
"audio_ids": [
"audio_01hx8p0demo"
],
"video_list": [
{
"url": "https://example.com/assets/source-video.mp4",
"start": 0,
"ends": 10
}
]
}
}'