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.
Balanced quality and speed image generation with editing support. See supported inputs, parameters, pricing, response fields, and API examples.
alibaba/qwen-image-2.0
| 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 or multi-image fusion |
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-2.0",
"input": {
"prompt": "Watercolor painting of a cozy bookshop interior",
"aspect_ratio": "1:1"
}
}'
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-2.0",
"input": {
"prompt": "Add a rainbow in the sky behind the mountains",
"image_urls": ["https://example.com/landscape.jpg"]
}
}'
{
"code": 200,
"success": true,
"data": {
"task_id": "abc123def456",
"status": "processing"
}
}
