🚀 New model available: DeepSeek-V3.1 🚀
Qwen/
Qwen-Image-Edit is a next-generation image editing model built on top of Qwen-Image, designed for both semantic and appearance-level edits. It excels at tasks like precise text modifications, style transfers, viewpoint transformations, and element adjustments while preserving overall visual consistency.
This document provides an overview of the DeepInfra-compatible OpenAI image edits API. It allows users to edit images using DeepInfra models.
curl -X POST \
-H "Authorization: Bearer $DEEPINFRA_TOKEN" \
-F image=@image.png \
-F n=1 \
-F size=1024x1024 \
-F model=Qwen/Qwen-Image-Edit \
https://api.deepinfra.com/v1/openai/images/edits
The API returns a JSON object containing the generated image(s).
{
"created": 1740418043,
"data": [
{
"revised_prompt": null,
"b64_json": "/9j/4AAQS..."
}
]
}
© 2025 Deep Infra. All rights reserved.