Base URL: https://beeble.ohio1.sakura.saas.parasail.io
Running Wan2.1-VACE-14B on NVIDIA B200 (192 GB VRAM).
curl -X POST https://beeble.ohio1.sakura.saas.parasail.io/v1/submit \
-H "Content-Type: application/json" \
-d '{
"resolution": 720,
"num_frames": 81,
"num_inference_steps": 4,
"seed": 1,
"text_prompt": "cinematic, high quality, natural lighting",
"source_url": "https://your-bucket.s3.amazonaws.com/source.mp4",
"reference_url": "https://your-bucket.s3.amazonaws.com/reference.png"
}'Response:
{
"request_id": "42718215-fdfc-48a1-934c-768bf545fc45",
"status": "IN_QUEUE",
"status_url": "/v1/status/42718215-fdfc-48a1-934c-768bf545fc45",
"response_url": "/v1/result/42718215-fdfc-48a1-934c-768bf545fc45",
"queue_position": 0
}curl https://beeble.ohio1.sakura.saas.parasail.io/v1/status/<request_id>Status progression: IN_QUEUE → IN_PROGRESS → COMPLETED (or FAILED).
The response includes timing stats and logs once complete.
curl -o output.mp4 https://beeble.ohio1.sakura.saas.parasail.io/v1/result/<request_id>| Parameter | Default | Description |
|---|---|---|
resolution |
1080 | 720 or 1080 |
num_frames |
81 | Must satisfy (n-1) % 4 == 0. Valid: 5, 9, 13, ..., 81, ..., 241 |
num_inference_steps |
4 | Denoising steps (1-50) |
seed |
1 | Random seed |
text_prompt |
"cinematic, high quality, natural lighting" | Text conditioning |
source_url |
(optional) | URL to source video (.mp4) or image |
reference_url |
(optional) | URL to reference image |
| Resolution | Denoising | Total |
|---|---|---|
| 720p / 81f / 4 steps | ~75s | ~89s |
| 1080p / 81f / 4 steps | ~331s | ~354s |
# Health check
curl https://beeble.ohio1.sakura.saas.parasail.io/health
# Readiness (503 until model loaded)
curl https://beeble.ohio1.sakura.saas.parasail.io/ready