Edit and transform existing images using Seedance’s Seedream 5 model. Provide reference images along with a text prompt to guide the editing process.
| Property | Value |
|---|
| Provider | Seedance |
| Model | Seedream 5 |
| Capability | Edit Image |
| Category | Image to Image |
| Base Cost | 35,000 micro-cents/request ($0.035) |
| Processing Time | ~30 seconds |
Request Body
Model slug. Use seedance/seedream-5/edit-image for image editing.
Input parameters for image editing.
Text description for editing the image. Max length: 5,000 characters.
Reference image URLs for editing. Provide up to 14 image URLs. Max items: 14.
Output aspect ratio. Default: 16:9. Options: 16:9, 9:16, 1:1, 4:3, 3:4, 21:9, 3:2, 2:3.
Output resolution. Default: 2K. Options: 2K, 3K.
HTTPS URL to receive a webhook notification when the job completes or fails.
Pricing
Base cost: 35,000 micro-cents per request ($0.035)
finalCost = baseCost × resolution
| Factor | Option | Multiplier |
|---|
| Resolution | 2K | 1x |
| 3K | 1.5x |
Default cost: 2K resolution = 35,000 × 1 = 35,000 micro-cents ($0.035)3K cost: 35,000 × 1.5 = 52,500 micro-cents ($0.0525)
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": "seedance/seedream-5/edit-image",
"input": {
"prompt": "Edit an image by replacing the background",
"image_urls": ["https://example.com/your-image.jpg"],
"aspect_ratio": "16:9",
"resolution": "2K"
}
}'