Model
Parameters
Example - Text-to-Image
Example - Image Editing
Response
Volume discounts are available for almost all models. Reach out at contact@unifically.com to discuss custom pricing.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Base Qwen image model with text-to-image and editing support. See supported inputs, parameters, pricing, response fields, and API examples.
alibaba/qwen-image
| 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 |
nsfw_check | boolean | No | Check uploaded media inputs for NSFW content. Default: true |
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",
"input": {
"prompt": "A serene Japanese garden with cherry blossoms",
"aspect_ratio": "16:9"
}
}'
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",
"input": {
"prompt": "Add snow falling in the scene",
"image_urls": ["https://example.com/photo.jpg"]
}
}'
{
"code": 200,
"success": true,
"data": {
"task_id": "abc123def456",
"status": "processing"
}
}
