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": "A white cat stands on a windowsill in warm afternoon light. The camera slowly pushes in as the cat blinks softly and turns to look outside.",
"negative_prompt": "blurry, flicker, low quality, distorted",
"first_frame_url": "https://your-domain.com/assets/first-frame.png",
"last_frame_url": "https://your-domain.com/assets/last-frame.png",
"resolution": "1080p",
"duration": 5,
"prompt_extend": true,
"watermark": false,
"seed": 123456
}
}'