curl --location 'https://api.kie.ai/api/v1/jobs/createTask' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"model": "qwen2-1/image-to-image",
"callBackUrl": "https://your-domain.com/api/callback",
"input": {
"image_urls": [
"https://example.com/a.jpg",
"https://example.com/b.jpg"
],
"prompt": "Replace the backpack in the first image with the colour scheme from the second image, and leave everything else unchanged",
"aspect_ratio": "auto",
"resolution": "1K",
"background": "opaque",
"output_format": "png",
"enhance_prompt": false,
"seed": 20260921
}
}'