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",
"input": {
"prompt": "Use the reference image identity and generate a cinematic fashion video",
"image_references": [
{
"image_url": "https://example.com/reference-1.png"
},
{
"image_url": "https://example.com/reference-2.png"
}
],
"duration": 5,
"quality": "720p",
"aspect_ratio": "9:16",
"generate_audio_switch": false,
"seed": 123456,
},
"callBackUrl": "https://example.com/kie/callback"
}'