Documentation Index Fetch the complete documentation index at: https://developer.pixelbyte.app/docs/llms.txt
Use this file to discover all available pages before exploring further.
Generate text to image outputs with Alibaba+‘s Wan 2.7 Pro model. Submitted as an asynchronous job and delivered via webhook or polling.
Property Value Provider Alibaba+ Model Wan 2.7 Pro Capability Text to Image Base Cost 45,000 micro-cents/image ($0.045/img) Processing Time ~30 seconds
Request Body
Model slug. Use alibaba-plus/wan-2.7-pro/text-to-image for text to image generation.
Input parameters for text to image generation. Text description of the image to generate (max 5000 characters).
Output image size. Default: "2K". Options: 1K, 2K.
Number of images to generate. Default: "1". Options: 1, 2, 3, 4.
Enhanced inference for better quality. Default: true.
HTTPS URL to receive a webhook notification when the job completes or fails.
Pricing
Base cost: 45,000 micro-cents per image ($0.045/img)
finalCost = baseCost × num_images
Factor Option Multiplier Number of Images 11x 22x 33x 44x
Default cost: 1 number of images = 45,000 × 1 = 45,000 micro-cents ($0.045)
Response
Unique identifier for the submitted job.
Initial job status. Always "pending" on successful submission.
ISO 8601 timestamp of the estimated completion time.
The cost of the job in micro-cents.
Code Examples
curl -X POST https://api.muvi.video/v1/jobs/submit \
-H "Authorization: Bearer $PIXELBYTE_API_KEY " \
-H "Content-Type: application/json" \
-d '{
"model": "alibaba-plus/wan-2.7-pro/text-to-image",
"input": {
"prompt": "A photorealistic portrait of a fox in a forest at golden hour",
"size": "2K",
"num_images": "1"
}
}'