curl --location 'https://api.kie.ai/api/v1/jobs/createTask' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"model": "pixverse-v6/reference-to-video",
"callBackUrl": "https://your-domain.com/api/callback",
"input": {
"prompt": "A cinematic sunrise illuminates a mist-shrouded mountain lake; the camera slowly sweeps across the water'\''s surface as a flock of birds flies overhead.",
"image_references": [
{
"image_url": "https://your-domain.com/images/dog.png",
"type": "subject",
"ref_name": "dog"
},
{
"image_url": "https://your-domain.com/images/room.png",
"type": "background",
"ref_name": "room"
}
],
"aspect_ratio": "16:9",
"quality": "720p",
"duration": 5,
"generate_audio_switch": false,
"seed": 123456789
}
}'