Wan 2.6 — Reference to Video
curl --request POST \
--url https://api.muvi.video/v1/jobs/submit \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"model": "<string>",
"input": {
"prompt": "<string>",
"video_urls": [
{}
],
"aspect_ratio": "<string>",
"negative_prompt": "<string>",
"resolution": "<string>",
"enable_prompt_expansion": true,
"multi_shots": true,
"seed": 123,
"enable_safety_checker": true,
"duration": "<string>"
}
}
'import requests
url = "https://api.muvi.video/v1/jobs/submit"
payload = {
"model": "<string>",
"input": {
"prompt": "<string>",
"video_urls": [{}],
"aspect_ratio": "<string>",
"negative_prompt": "<string>",
"resolution": "<string>",
"enable_prompt_expansion": True,
"multi_shots": True,
"seed": 123,
"enable_safety_checker": True,
"duration": "<string>"
}
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
model: '<string>',
input: {
prompt: '<string>',
video_urls: [{}],
aspect_ratio: '<string>',
negative_prompt: '<string>',
resolution: '<string>',
enable_prompt_expansion: true,
multi_shots: true,
seed: 123,
enable_safety_checker: true,
duration: '<string>'
}
})
};
fetch('https://api.muvi.video/v1/jobs/submit', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"jobId": "<string>",
"status": "<string>",
"estimatedCompletionTime": "<string>",
"costMicroCents": 123
}Wan 2.6
Wan 2.6 — Reference to Video
Generate reference to video outputs using Alibaba+‘s Wan 2.6 model via PixelByte API
POST
/
v1
/
jobs
/
submit
Wan 2.6 — Reference to Video
curl --request POST \
--url https://api.muvi.video/v1/jobs/submit \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"model": "<string>",
"input": {
"prompt": "<string>",
"video_urls": [
{}
],
"aspect_ratio": "<string>",
"negative_prompt": "<string>",
"resolution": "<string>",
"enable_prompt_expansion": true,
"multi_shots": true,
"seed": 123,
"enable_safety_checker": true,
"duration": "<string>"
}
}
'import requests
url = "https://api.muvi.video/v1/jobs/submit"
payload = {
"model": "<string>",
"input": {
"prompt": "<string>",
"video_urls": [{}],
"aspect_ratio": "<string>",
"negative_prompt": "<string>",
"resolution": "<string>",
"enable_prompt_expansion": True,
"multi_shots": True,
"seed": 123,
"enable_safety_checker": True,
"duration": "<string>"
}
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
model: '<string>',
input: {
prompt: '<string>',
video_urls: [{}],
aspect_ratio: '<string>',
negative_prompt: '<string>',
resolution: '<string>',
enable_prompt_expansion: true,
multi_shots: true,
seed: 123,
enable_safety_checker: true,
duration: '<string>'
}
})
};
fetch('https://api.muvi.video/v1/jobs/submit', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"jobId": "<string>",
"status": "<string>",
"estimatedCompletionTime": "<string>",
"costMicroCents": 123
}Generate reference to video outputs with Alibaba+‘s Wan 2.6 model. Submitted as an asynchronous job and delivered via webhook or polling.
| Property | Value |
|---|---|
| Provider | Alibaba+ |
| Model | Wan 2.6 |
| Capability | Reference to Video |
| Base Cost | 150,000 micro-cents/second ($0.15/sec) |
| Processing Time | ~300 seconds |
Request Body
string
required
Model slug. Use
alibaba-plus/wan-2.6/reference-to-video for reference to video generation.object
required
Input parameters for reference to video generation.
Hide properties
Hide properties
string
required
Text description of the video to generate (max 2500 characters).
array
required
Reference video URLs (1-3).
string
Output aspect ratio. Default:
"16:9". Options: 16:9, 9:16, 1:1, 4:3, 3:4.string
Text describing elements you want to avoid in the output (max 1000 characters).
string
Output resolution. Default:
"1080p". Options: 720p, 1080p.boolean
Automatically expand the prompt for richer outputs. Default:
true.boolean
Generate multi-shot output. Default:
true.integer
Random seed for reproducible generation.
boolean
Filter unsafe content in the output. Default:
true.string
Video duration in seconds. Default:
"5". Options: 5, 10.string
HTTPS URL to receive a webhook notification when the job completes or fails.
Pricing
Base cost: 150,000 micro-cents per second ($0.15/sec)finalCost = baseCost × duration
| Factor | Option | Multiplier |
|---|---|---|
| Duration | 5 | 5x |
10 | 10x |
Default cost: 5 duration = 150,000 × 5 = 750,000 micro-cents ($0.75)
Response
string
Unique identifier for the submitted job.
string
Initial job status. Always
"pending" on successful submission.string
ISO 8601 timestamp of the estimated completion time.
number
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.6/reference-to-video",
"input": {
"prompt": "A serene lake at sunrise with mist rolling over the water",
"video_urls": ["https://example.com/video.mp4"],
"aspect_ratio": "16:9",
"resolution": "1080p",
"duration": "5"
}
}'
import requests
response = requests.post(
"https://api.muvi.video/v1/jobs/submit",
headers={
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json"
},
json={
"model": "alibaba-plus/wan-2.6/reference-to-video",
"input": {
"prompt": "A serene lake at sunrise with mist rolling over the water",
"video_urls": ["https://example.com/video.mp4"],
"aspect_ratio": "16:9",
"resolution": "1080p",
"duration": "5"
}
}
)
data = response.json()
print(data)
const response = await fetch("https://api.muvi.video/v1/jobs/submit", {
method: "POST",
headers: {
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json"
},
body: JSON.stringify({
model: "alibaba-plus/wan-2.6/reference-to-video",
input: {
prompt: "A serene lake at sunrise with mist rolling over the water",
video_urls: ["https://example.com/video.mp4"],
aspect_ratio: "16:9",
resolution: "1080p",
duration: "5"
}
})
});
const data = await response.json();
console.log(data);
⌘I
