Skip to main content
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.
Endpointhttps://api.runpod.ai/v2/qwen-image-edit-2511-lora/runsync
Pricing$0.025 per image
TypeImage editing

Request

All parameters are passed within the input object in the request body.
input.prompt
string
required
Text instructions describing the desired edits.
input.images
array
required
Array of 1-3 image URLs to edit.
input.loras
array
Array of LoRA configurations to apply.
input.loras[].path
string
required
URL or path to the LoRA model file.
input.loras[].scale
number
required
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.
input.seed
integer
default:"-1"
Seed for reproducible results. Set to -1 for random.
input.output_format
string
default:"jpeg"
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

id
string
Unique identifier for the request.
status
string
Request status. Returns COMPLETED on success, FAILED on error.
output
object
The generation result containing the image URL and cost.
output.image_url
string
URL of the edited image. This URL expires after 7 days.
output.cost
float
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.