> ## Documentation Index
> Fetch the complete documentation index at: https://docs.unifically.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Qwen Image Plus

> Diverse artistic styles with fast image generation and editing

Generate AI images in diverse artistic styles using Qwen Image Plus. Fast generation optimized for creative and stylistic variety. Supports text-to-image and image editing via a specialized edit model under the hood.

## Model

```
alibaba/qwen-image-plus
```

## Parameters

| Parameter         | Type    | Required | Description                                          |
| ----------------- | ------- | -------- | ---------------------------------------------------- |
| `prompt`          | string  | Yes      | Text description of the image (max 800 chars)        |
| `aspect_ratio`    | string  | No       | `1:1`, `16:9`, `9:16`, `4:3`, `3:4` (default: `1:1`) |
| `image_urls`      | array   | No       | Input image URLs for editing. Omit for text-to-image |
| `negative_prompt` | string  | No       | What to avoid in the image (max 500 chars)           |
| `prompt_extend`   | boolean | No       | Smart prompt rewriting (default: `true`)             |
| `seed`            | integer | No       | Seed for reproducibility                             |

## Example - Text-to-Image

```bash theme={null}
curl -X POST https://api.unifically.com/v1/tasks \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "alibaba/qwen-image-plus",
    "input": {
      "prompt": "Art deco poster of a jazz musician playing saxophone",
      "aspect_ratio": "9:16"
    }
  }'
```

## Example - Image Editing

```bash theme={null}
curl -X POST https://api.unifically.com/v1/tasks \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "alibaba/qwen-image-plus",
    "input": {
      "prompt": "Replace the background with a neon-lit cityscape",
      "image_urls": ["https://example.com/photo.jpg"]
    }
  }'
```

## Response

```json theme={null}
{
  "code": 200,
  "success": true,
  "data": {
    "task_id": "abc123def456",
    "status": "pending"
  }
}
```
