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 image to image / edit 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 | Image to Image / Edit |
| 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/image-to-image for image to image / edit generation.
Input parameters for image to image / edit generation.
Edit instruction. max 5000 characters.
Output image size. Default: "2K". Options: 1K, 2K.
Number of images to generate. Default: "1". Options: 1, 2, 3, 4.
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 | 1 | 1x |
| 2 | 2x |
| 3 | 3x |
| 4 | 4x |
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/image-to-image",
"input": {
"image_urls": ["https://example.com/image.jpg"],
"prompt": "Make the sky a vivid sunset with warm orange tones",
"size": "2K",
"num_images": "1"
}
}'