Zurück zu den Modellen
Live-APIQwen Image
Live-APIQwen ImageQwen Image 3
qwen-image-3High-fidelity text-to-image and image-to-image generation with strong typography, layout, and multilingual prompt following.
Modellübersicht
- Endpunkt
- /api/v1/images/generations
- Credit-Kosten
- 10 credits / image
- Typische Latenz
- 20-60 sec
- Ein- und Ausgabe
- Text, up to 3 images → PNG or JPEG
Funktionen
- 1K and 2K output
- Text and image conditioning
- Prompt expansion
- Deterministic seeds
Anfrageparameter
| Parameter | Typ | Anforderung | Beschreibung |
|---|---|---|---|
| model | string | Erforderlich | Model identifier. Standard: qwen-image-3 |
| prompt | string | Erforderlich | Generation prompt, up to 800 characters. |
| image_urls | string[] | Optional | Up to three public image URLs for image-to-image generation. |
| aspect_ratio | string | Optional | Output aspect ratio. Standard: 16:9 |
| resolution | 1K | 2K | Optional | Output resolution tier. Standard: 1K |
| output_format | png | jpeg | Optional | Generated file format. Standard: png |
| seed | integer | Optional | Integer from 0 to 2147483647. Standard: 1 |
Anfragebeispiel
curl https://qwenapi.org/api/v1/images/generations \
-H "Authorization: Bearer $QWEN_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "qwen-image-3",
"prompt": "Editorial product photo of a translucent blue speaker on a steel desk, soft morning light",
"aspect_ratio": "16:9",
"resolution": "1K",
"output_format": "png"
}'Der Generierungsendpunkt ist asynchron. Rufen Sie GET /api/v1/tasks/ mit demselben Bearer-Schlüssel ab.