Seedance 2.5 is live — 30-second cinematic video with native audio & real-person references
Is Wan 3.0 Open Source? Weights, API Access, and Local Use
2026/08/23

Is Wan 3.0 Open Source? Weights, API Access, and Local Use

Wan 3.0 has an API, but no official open weights as of August 23, 2026. See what is available, what is not, and when Wan 2.2 is the local option.

Wan 3.0 is available through APIs, but Alibaba has not published official Wan 3.0 model weights as of August 23, 2026. You cannot download the 3.0 video model from the official Wan repository and run the same release locally. If local weights are a hard requirement, Wan 2.2 remains the current official open-weight Wan generation.[1][2]

The confusion is reasonable: “Wan” has been associated with open video models, and search results often collapse every generation into the same product family. The version number changes the answer.

What is actually available

QuestionAnswer on August 23, 2026
Can I call Wan 3.0 through an API?Yes
Are official Wan 3.0 weights published?No official weights found
Is there an official Wan 3.0 ComfyUI workflow?Not for downloadable 3.0 weights
Can Wan 3.0 accept local files through an API?Yes, after uploading them to public URLs
Which current Wan generation has official downloadable weights?Wan 2.2

Alibaba's Wan 3.0 release describes a hosted multimodal video system that accepts text, images, audio, video, documents, and web pages and generates up to 30 seconds.[3] The official Wan GitHub organization, meanwhile, publishes repositories for Wan 2.1 and Wan 2.2 but no Wan 3.0 weights repository.[1]

“No weights yet” is narrower than “closed forever.” It only describes the current release state. Alibaba could publish a smaller or differently licensed 3.0 checkpoint later. Until that happens, guides claiming to install Wan 3.0 locally should be checked for three common substitutions:

  • They install Wan 2.2 under a page titled “Wan 3.0.”
  • They call a hosted API from a local UI.
  • They use an unrelated community model or wrapper with “3.0” in its name.

None of those is the same as running official Wan 3.0 weights on your GPU.

Local UI and local inference are different

ComfyUI can be the interface while inference happens remotely. A node can upload the inputs, submit an API task, poll it, and return the video to the local graph. The workflow looks local but the model is not resident on the machine.

That distinction matters for four reasons:

RequirementHosted Wan 3.0 APILocal open weights
GPU purchase and setupNot requiredRequired
Inputs leave your machineYesNot necessarily
Access to current Wan 3.0 feature setYesNo official weights yet
Per-generation chargeYesElectricity and hardware instead

If a policy says media must never leave a private network, a hosted API does not meet it. If the real requirement is simply “I do not want to maintain a video inference server,” API access is the easier route.

Why Wan 2.2 is not a drop-in copy of Wan 3.0

Wan 2.2 has official code and weights, including text-to-video, image-to-video, speech-to-video, character animation, and animation checkpoints in the official repository.[2] It is a strong local option, but it should not be described as a free local build of Wan 3.0.

Wan 3.0's hosted release adds a different input surface: up to 30-second output, document and public web-page input, larger multimodal reference handling, and native audio in the same request family. A local Wan 2.2 workflow may cover the final video task without accepting the same inputs or producing the same model behavior.

Choose the version by the non-negotiable constraint:

  • Choose Wan 2.2 locally when privacy, offline use, fine-tuning, or control over the inference stack matters more than using the newest hosted model.
  • Choose Wan 3.0 through an API when 30-second output, document/web input, or immediate access matters more than owning the weights.
  • Wait when you specifically need Wan 3.0 weights. An API wrapper cannot satisfy that requirement.

What local deployment would require even after a weight release

A future checkpoint would answer only the first local-inference question. It would not make installation automatic. A production team would still need to establish:

  • the exact license and permitted territories;
  • supported precision and minimum VRAM;
  • inference time at the intended resolution and duration;
  • whether audio generation is included in the released checkpoint;
  • storage for weights, caches, inputs, and outputs;
  • a queue, health checks, retries, and capacity limits;
  • an upgrade plan for new checkpoints and runtime dependencies.

Video models also make consumer-GPU claims slippery. “Runs on 24 GB” can mean a short low-resolution clip with aggressive offloading and a long wait. It does not automatically describe a server that can accept concurrent 30-second 1080P requests. Throughput and supported features matter as much as whether one sample reaches the last frame.

For privacy-sensitive work, local can still be the right choice even when it is slower. For a product with irregular volume, a hosted endpoint avoids paying for idle GPUs and the engineering around them. The decision should compare total workload cost and policy constraints, not a free download against one API call.

How to verify a claimed 3.0 checkpoint

Before downloading a large file from a community mirror, check the chain of evidence:

  1. Does the official Wan organization link to the repository or model card?
  2. Does the model card name Wan 3.0 explicitly, rather than a fine-tuned Wan 2.x base?
  3. Are weight files present, with checksums or a versioned release?
  4. Is there a license attached to those exact files?
  5. Do the documented inputs and outputs match the advertised 3.0 capability?

A filename is weak evidence. A wrapper can rename a Wan 2.2 checkpoint, and a quantization can inherit the base model's limits while marketing itself with a newer label. If the official organization does not acknowledge the artifact, treat it as a community claim and isolate it before loading. Model files can execute custom code through their runtime or dependencies; downloading from an unknown mirror is also a supply-chain decision.

What “Wan 3.0 API access” means in practice

The Wan 3.0 API on reAPI uses an asynchronous video endpoint. A request returns a task id; the application polls until an MP4 URL is available. The model id is wan3.0-video.[4]

{
  "model": "wan3.0-video",
  "prompt": "A paper boat travels through a flooded miniature city",
  "resolution": "720P",
  "duration": 10,
  "audio": true
}

Media fields require public HTTP(S) URLs rather than local paths or base64 data. Uploading a local file before submission does not turn the generation into local inference; it is still a hosted request.

How to check the status later

Do not rely on a blog title or an old social post. Check these three places:

  1. The official Wan GitHub organization for a repository or release tagged 3.0.
  2. The official Hugging Face organization for actual weight files and a model card.
  3. Alibaba's release or documentation for a license and hardware requirements.

A genuine open-weight release needs all three pieces to be useful: downloadable artifacts, a license, and enough inference instructions to run them. A demo page or API announcement is not a weight release.

References

  1. Wan-Video official GitHub organization, accessed August 23, 2026.
  2. Wan-Video, “Wan2.2” official repository, accessed August 23, 2026.
  3. Alibaba Cloud, “Wan 3.0: 30-Second AI Video Generation from Any Input”, 2026.
  4. reAPI Wan 3.0 API documentation, accessed August 23, 2026.