callBackUrl parameter to receive automatic notifications when generation completes, while still keeping GET /api/v1/jobs/recordInfo polling as a fallback.curl --location --request POST '/api/v1/jobs/createTask' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "veo-3-1-fast-image-to-video",
"callBackUrl": "https://your-domain.com/api/callback",
"input": {
"image": "https://example.com/image.jpg",
"prompt": "The subject slowly turns their head and smiles",
"negative_prompt": "blurry, low quality, distorted",
"duration": 8,
"resolution": "720p",
"aspect_ratio": "16:9",
"generate_audio": true,
"seed": 1
}
}'{
"code": 200,
"msg": "success",
"data": {
"taskId": "task_veo_31_fast_i2v_1765166238716"
}
}