Wan 3.0

Wan 3.0 API

Wan 3.0 API

Wan 3.0 API ページは、スタジオと同じ生成フィールドが必要な開発者向けです。今日サポートされる顧客経路は、認証済みの wan30.art アカウントです。

Same fields as the studio

A job needs a prompt. Optional fields cover duration, resolution, aspect ratio, enable_audio, image, last_image, and reference media.

Auth stays on your key

Send the user API key in the Authorization header. The site server attaches the internal service credential. Browser clients never talk to the upstream worker.

Credits before render

Balance is checked when the task is created. Failed jobs refund. Duration and audio are the main cost drivers, so price the 30-second path before a batch.

What the Wan 3.0 API is for

Use it when a tool, agent, or backend needs repeatable Wan 3.0 jobs: text-to-video, image-to-video, or reference-to-video. The JSON below is the contract, not a public unauthenticated playground. Create an account, keep the session or API key private, and poll status until the clip is ready.

Start in the studio, then automate

If you are still exploring Wan 3.0, generate in the browser first. Once a prompt and duration are stable, copy those fields into your integration. Do not hard-code internal worker hostnames from this page.

Same fields as the studio

{
  "prompt": "A slow product orbit, then a pack-shot finish",
  "model": "wan-3.0",
  "type": "text-to-video",
  "duration": 12,
  "resolution": "1080p",
  "aspect_ratio": "16:9",
  "enable_audio": true
}

Auth stays on your key

{
  "prompt": "Hold identity, then walk into a brighter hallway",
  "model": "wan-3.0",
  "type": "image-to-video",
  "image": "https://example.com/first-frame.jpg",
  "last_image": "https://example.com/last-frame.jpg",
  "duration": 8,
  "enable_audio": false
}

Ship a Wan 3.0 job

1

Create an account key

Sign in, open the studio once, and keep the API key from your account. Credits must cover the duration you request.

2

POST a generation payload

Send prompt plus optional duration, audio, image, last_image, or references. The response returns a task_id.

3

Poll status, then download

Query status with the task_id until the job succeeds or fails. Store the result URL from your history, not from a third-party CDN guess.

Wan 3.0 API FAQ

Is there a public Wan 3.0 API today?

Programmatic jobs use your wan30.art account API key and the site’s authenticated generate/status flow. There is no anonymous public endpoint on this domain.

What duration can the API request?

Wan 3.0 generation accepts 2–30 seconds. Price the longer jobs before you loop them. The browser composer may show a shorter subset while you iterate.

Does the API support audio and end frames?

Yes. enable_audio turns on native soundtrack generation. last_image is the optional end frame for image-to-video. Reference arrays cover extra images, videos, and audio.

Where do I see credit cost?

Use the pricing page. Credits depend on duration, resolution, and options. A failed task should return credits automatically.

Can I call the upstream model host directly?

No. Browser and customer integrations should only call wan30.art. The site proxies generation so keys and billing stay server-side.

Prove the shot, then automate

Use the Wan 3.0 studio first. Reuse the same API fields when the prompt is stable.