callBackUrl parameter so your service can receive completion notifications instead of polling for task status.curl --location 'https://api.kie.ai/api/v1/jobs/createTask' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"model": "gpt-image-2-5-flare-image-to-image",
"callBackUrl": "https://your-domain.com/api/callback",
"input": {
"prompt": "Transform this product image into a premium e-commerce poster style.",
"input_urls": [
"https://example.com/"
],
"aspect_ratio": "16:9",
"resolution": "4K",
"background": "transparent"
}
}'{
"code": 200,
"msg": "success",
"data": {
"taskId": "task_gptimage_1765180586443"
}
}