curl --location --request POST 'https://api.kie.ai/api/v1/jobs/createTask' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "wan/2-7-image-to-video",
"callBackUrl": "https://your-domain.com/api/callback",
"input": {
"prompt": "一只白色猫咪站在窗台上,午后阳光洒在毛发上,镜头缓慢推进,猫咪轻轻眨眼并转头看向窗外。",
"negative_prompt": "模糊、闪烁、低质量、畸形",
"first_frame_url": "https://your-domain.com/assets/first-frame.png",
"driving_audio_url": "https://your-domain.com/assets/driving-audio.mp3",
"resolution": "1080p",
"duration": 5,
"prompt_extend": true,
"watermark": false,
"seed": 123456
}
}'