Qwen Image Edit 2511 AI Image Editing Model

Alibaba's Qwen image editing model for instruction-based image modifications and transformations

qwen-image-edit-plus-2511 API OpenAI-compatible

Integrate Qwen Image Edit 2511 through the Lumenfall API to perform instruction-based image editing and text-to-image generation using a single OpenAI-compatible endpoint. This interface allows developers to programmatically modify existing visual assets or create new high-fidelity images via standard HTTPS requests.

Base URL
https://api.lumenfall.ai/openai/v1
Model
qwen-image-edit-2511

Text to Image Generate

Create images from text descriptions

curl -X POST \
  https://api.lumenfall.ai/openai/v1/images/generations \
  -H "Authorization: Bearer $LUMENFALL_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "qwen-image-edit-2511",
    "prompt": "A serene mountain landscape at sunset",
    "size": "1024x1024"
  }'
# Response:
# { "created": 1234567890, "data": [{ "url": "https://...", "revised_prompt": "..." }] }

Image Editing Edit

Transform existing images with text instructions

curl -X POST \
  https://api.lumenfall.ai/openai/v1/images/edits \
  -H "Authorization: Bearer $LUMENFALL_API_KEY" \
  -F "model=qwen-image-edit-2511" \
  -F "[email protected]" \
  -F "prompt=Add a starry night sky to this image" \
  -F "size=1024x1024"
# Response:
# { "created": 1234567890, "data": [{ "url": "https://...", "revised_prompt": "..." }] }