Skip to content

Instantly share code, notes, and snippets.

@bsima
Last active April 3, 2026 03:01
Show Gist options
  • Select an option

  • Save bsima/2f0d69098c4f42226832aeb585ee019d to your computer and use it in GitHub Desktop.

Select an option

Save bsima/2f0d69098c4f42226832aeb585ee019d to your computer and use it in GitHub Desktop.

Beeble Video Inference Endpoint

Base URL: https://beeble.ohio1.sakura.saas.parasail.io

Running Wan2.1-VACE-14B on NVIDIA B200 (192 GB VRAM).

Submit a job

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
}

Poll status

curl https://beeble.ohio1.sakura.saas.parasail.io/v1/status/<request_id>

Status progression: IN_QUEUEIN_PROGRESSCOMPLETED (or FAILED).

The response includes timing stats and logs once complete.

Download result

curl -o output.mp4 https://beeble.ohio1.sakura.saas.parasail.io/v1/result/<request_id>

Parameters

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

Timing

Resolution Denoising Total
720p / 81f / 4 steps ~75s ~89s
1080p / 81f / 4 steps ~331s ~354s

Other endpoints

# 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment