Qwen Image 3.0 Pro
Alibaba
Text-zu-BildBild-zu-BildAb 0,0402 $ /Bild
Qwen Image 3 Pro erzeugt detailreiche Bilder mit ausgefeilter Komposition, klarem Text, starker Einhaltung der Vorgaben und feinen visuellen Details.
Eingang
Modus
Füllen Sie die Pflichtfelder aus, um den Preis zu sehen.
Text To Image · 1K
Ausgabe
Leerlauf| Auflösung | Typ | Preis |
|---|---|---|
| 1K | Bild-zu-Bild | 0,0402 $ |
| Text-zu-Bild | 0,0402 $ | |
| 2K | Bild-zu-Bild | 0,075 $ |
| Text-zu-Bild | 0,075 $ |
Endpunkt
POST
https://pollo.ai/api/platform/v1/generation/alibaba/qwen-image-3-pro/imageModus
Authentifizierung
Übergeben Sie Ihren API-Schlüssel im x-api-key-Anfrageheader.
x-api-key: YOUR_API_KEYAPI-Schlüssel anzeigenAufgabe einreichen
Erstellen Sie eine Modellgenerierungsaufgabe.
Anfrage
curl -X POST 'https://pollo.ai/api/platform/v1/generation/alibaba/qwen-image-3-pro/image' \
-H 'Content-Type: application/json' \
-H 'x-api-key: YOUR_API_KEY' \
-d '{
"input": {
"prompt": "A cinematic shot of a golden retriever running through a field of sunflowers at sunset, warm rim light, shallow depth of field",
"aspectRatio": "1:1",
"resolution": "1K"
}
}'Antwort (200)
{
"taskId": "task_01HZ7Q2V8J3E4T6Y9K0M1N2P3",
"status": "pending"
}Status prüfen
Fragen Sie den Aufgabenstatus-Endpunkt so lange ab, bis die Generierung abgeschlossen ist.
HTTP-Anfrage
GET /api/platform/v1/generation/{taskId}/status HTTP/1.1
Host: pollo.ai
x-api-key: YOUR_API_KEYAntwort (200)
{
"taskId": "task_01HZ7Q2V8J3E4T6Y9K0M1N2P3",
"credit": 12,
"costUsd": 0.12,
"generations": [
{
"id": "generation_01",
"createdDate": "2026-07-13T07:00:00.000Z",
"updatedDate": "2026-07-13T07:00:12.000Z",
"status": "succeeded",
"failMsg": null,
"url": "https://example.com/output.mp4",
"mediaType": "video"
}
]
}Webhook
Optional kann webhookUrl angegeben werden, um eine Rückruffunktion zu erhalten, wenn die Aufgabe erfolgreich war oder fehlschlug.
Optionales Anfragefeld
{
"input": {
"prompt": "A cinematic shot of a golden retriever running through a field of sunflowers at sunset, warm rim light, shallow depth of field",
"aspectRatio": "1:1",
"resolution": "1K"
},
"webhookUrl": "https://example.com/webhooks/pollo"
}Schema
Eingabefelder für den ausgewählten Endpunkt und Modus.
| Feld | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
| prompt | string | Ja | Text prompt describing the content to generate. |
| aspectRatio | string | NEIN | Output aspect ratio, as width:height (e.g. 16:9). |
| resolution | string | NEIN | Output resolution of the generated media (e.g. 720p, 1080p, 2K, 4K). Values are case-insensitive. |
Fehler
Gängige öffentliche API-Antwortcodes.
- 400
- Ungültige Eingabe oder Modellbeschränkung
- 401
- Fehlender oder ungültiger API-Schlüssel
- 403
- Der API-Schlüssel hat keinen Zugriff
- 404
- Es wurde kein Modell oder keine Aufgabe gefunden.
Die Modelldokumentation folgt in Kürze.