Image Qwen 3.0
Alibaba
Texte en imageImage en imageDe 0,03 $ / image
Qwen Image 3 crée des images soignées à partir d'instructions détaillées, avec un rendu de texte précis, une composition claire et des détails visuels précis.
Saisir
Mode
Remplissez les champs obligatoires pour voir le prix
Text To Image · 1K
Sortir
Inactif| Résolution | Taper | Prix |
|---|---|---|
| 1K | Image en image | 0,03 $ |
| Texte en image | 0,03 $ | |
| 2K | Image en image | 0,03 $ |
| Texte en image | 0,03 $ |
Point de terminaison
POST
https://pollo.ai/api/platform/v1/generation/alibaba/qwen-image-3/imageMode
Authentification
Transmettez votre clé API dans l'en-tête de requête x-api-key.
x-api-key: YOUR_API_KEYAfficher les clés APISoumettre la tâche
Créer une tâche de génération de modèle.
Demande
curl -X POST 'https://pollo.ai/api/platform/v1/generation/alibaba/qwen-image-3/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"
}
}'Réponse (200)
{
"taskId": "task_01HZ7Q2V8J3E4T6Y9K0M1N2P3",
"status": "pending"
}Vérifier l'état
Interrogez le point de terminaison d'état de la tâche jusqu'à ce que la génération soit terminée.
requête HTTP
GET /api/platform/v1/generation/{taskId}/status HTTP/1.1
Host: pollo.ai
x-api-key: YOUR_API_KEYRéponse (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
Incluez éventuellement webhookUrl pour recevoir une notification en cas de succès ou d'échec de la tâche.
Champ de requête facultatif
{
"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"
}Schéma
Champs de saisie pour le point de terminaison et le mode sélectionnés.
| Champ | Taper | Requis | Description |
|---|---|---|---|
| prompt | string | Oui | Text prompt describing the content to generate. |
| aspectRatio | string | Non | Output aspect ratio, as width:height (e.g. 16:9). |
| resolution | string | Non | Output resolution of the generated media (e.g. 720p, 1080p, 2K, 4K). Values are case-insensitive. |
Erreurs
Codes de réponse courants des API publiques.
- 400
- Entrée ou contrainte de modèle invalide
- 401
- Clé API manquante ou invalide
- 403
- La clé API n'a pas accès
- 404
- Modèle ou tâche introuvable
La documentation du modèle sera bientôt disponible.