← All models

Qwen: Qwen Image 3 Pro
qwen/qwen-image-3-proimages
The larger Qwen Image 3: same text accuracy with richer scene and material detail.
Price
Released
Aug 5, 2026
Parameters
promptrequiredaspect_ratio1:11:21:42:12:33:23:44:14:34:55:49:1616:9resolutionsize256x10241024x256512x10241024x512576x10241024x576682x10241024x682768x10241024x768818x10241024x818512x20481024x10242048x5121024x20482048x10241152x20482048x11521364x20482048x13641536x20482048x15361638x20482048x16382048x2048imageimage-to-image (via /v1/images/edits)How to use via API
import base64
from openai import OpenAI
client = OpenAI(base_url="https://api.mixen.ai/v1", api_key="mxn-...")
img = client.images.generate(
model="qwen/qwen-image-3-pro",
prompt="Милый кот-космонавт на Марсе",
size="256x1024", # либо extra_body={"aspect_ratio": "1:1", "resolution": "1k"}
n=1,
)
with open("image.png", "wb") as f:
f.write(base64.b64decode(img.data[0].b64_json))
# image-to-image: передать референс(ы) через multipart
edited = client.images.edit(
model="qwen/qwen-image-3-pro",
image=open("photo.png", "rb"), # один или несколько референсов
prompt="Добавь неоновую вывеску на фасад, сохрани композицию",
)
with open("edited.png", "wb") as f:
f.write(base64.b64decode(edited.data[0].b64_json))