Qwen Image Edit 2511 LoRA achieves significant advances in complex text rendering and precise image editing with LoRA support. It enables style customization through LoRA models while maintaining editing precision.
Try in playground Test Qwen Image Edit 2511 LoRA in the Runpod Hub playground.
Endpoint https://api.runpod.ai/v2/qwen-image-edit-2511-lora/runsyncPricing $0.025 per image Type Image editing
Request
All parameters are passed within the input object in the request body.
Text instructions describing the desired edits.
Array of 1-3 image URLs to edit.
Array of LoRA configurations to apply.
URL or path to the LoRA model file.
Scale factor for the LoRA influence.
input.size
string
default: "1024*1024"
Output dimensions. Options: 1024*1024, 1024*1280, 1280*1024, 1280*1280, 1280*1536, 1536*1080.
Seed for reproducible results. Set to -1 for random.
Output format. Options: jpeg, png, webp.
curl -X POST "https://api.runpod.ai/v2/qwen-image-edit-2511-lora/runsync" \
-H "Authorization: Bearer $RUNPOD_API_KEY " \
-H "Content-Type: application/json" \
-d '{
"input": {
"prompt": "Transform into anime style",
"images": ["https://example.com/photo.jpg"],
"loras": [
{
"path": "https://huggingface.co/example/anime-lora/model.safetensors",
"scale": 0.8
}
],
"size": "1024*1024",
"seed": -1,
"output_format": "png"
}
}'
Response
Unique identifier for the request.
Request status. Returns COMPLETED on success, FAILED on error.
The generation result containing the image URL and cost. URL of the edited image. This URL expires after 7 days.
Cost of the generation in USD.
{
"id" : "sync-a1b2c3d4-e5f6-7890-abcd-ef1234567890-u1" ,
"status" : "COMPLETED" ,
"delayTime" : 18 ,
"executionTime" : 4521 ,
"output" : {
"image_url" : "https://image.runpod.ai/abc123/output.png" ,
"cost" : 0.025
}
}
Image URLs expire after 7 days. Download and store edited images immediately if you need to keep them.
Cost calculation
Qwen Image Edit 2511 LoRA charges $0.025 per image edited.