callBackUrl parameter so your service can receive completion notifications instead of polling for task status.curl --location 'https://api.kie.ai/api/v1/jobs/createTask' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"model": "grok-imagine-video-1-5-preview",
"input": {
"prompt": "Describe the scene you want to generate.",
"image_urls": [
"https://your-domain.com/image/example.png"
],
"aspect_ratio": "16:9",
"resolution": "480p",
"duration": 8
},
"callBackUrl": "https://your-domain.com/api/callback"
}'{
"code": 200,
"msg": "success",
"data": {
"taskId": "task_grok-imagine-video-1.5-preview_1234567890"
}
}