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.
Highest quality image generation with thinking mode and up to 4K. See supported inputs, parameters, pricing, response fields, and API examples.
alibaba/wan-2.7-pro-image
| Parameter | Type | Required | Description |
|---|---|---|---|
prompt | string | Yes | Text description of the image (max 5000 chars) |
aspect_ratio | string | No | 1:1, 16:9, 9:16, 4:3, 3:4, 3:2, 2:3 (default: 1:1). Editing preserves input ratio |
image_urls | array | No | Omit for T2I. Up to 9 images for editing |
thinking_mode | boolean | No | Better quality, slower (default: true). T2I only |
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/wan-2.7-pro-image",
"input": {
"prompt": "A flower shop with exquisite windows and flowers on display",
"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/wan-2.7-pro-image",
"input": {
"prompt": "Change the dress to a red evening gown",
"image_urls": ["https://example.com/photo.jpg"]
}
}'
{
"code": 200,
"success": true,
"data": {
"task_id": "abc123def456",
"status": "processing"
}
}
