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/text-to-video",
"callBackUrl": "https://example.com/callback",
"input": {
"prompt": "A cat walking slowly on the beach at sunset, cinematic shot",
"aspect_ratio": "16:9",
"duration": 6
}
}'{
"code": 200,
"msg": "success",
"data": {
"taskId": "string"
}
}