callBackUrl parameter to receive an automatic notification when generation is complete instead of polling the status endpoint.curl --location 'https://api.kie.ai/api/v1/jobs/createTask' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"model": "minimax-h3/image-to-video",
"callBackUrl": "https://example.com/callback",
"input": {
"prompt": "Let the character in the scene turn around naturally and smile, camera slowly pushing forward",
"first_frame_url": "https://example.com/first-frame.jpg",
"last_frame_url": "https://example.com/last-frame.jpg",
"duration": 6
}
}'{
"code": 200,
"msg": "success",
"data": {
"taskId": "string"
}
}