All Models
Qwen-Image
Qwen-Image
Image
🖼️

Qwen-Image

Alibaba

About

Qwen-Image is Alibaba's image generation model, designed for cost-effective, high-volume image production. Delivers solid quality with strong prompt adherence across a wide range of creative and commercial use cases. A practical choice for developers building image-heavy applications who need reliable output at scale.

Pricing Tiers

Resolution / TierCostCredits
Standard$0.025/img5 cr

Use Cases

High-volume image productionApp and product illustrationsE-commerce catalog imagesSocial media visual content

API Example

JavaScript
const response = await fetch("https://api.lumavo.com/v1/txt2img", {
  method: "POST",
  headers: {
    "Authorization": "Bearer YOUR_API_KEY",
    "Content-Type": "application/json"
  },
  body: JSON.stringify({
    model: "qwen-image",
    prompt: "A cozy reading nook with warm lighting, bookshelves, and a cat curled up on the chair",
    count: 4
  })
});

const { taskId } = await response.json();