All Models
Wan 2.6
Video
🌊

Wan 2.6

Alibaba

About

Wan 2.6 is Alibaba's most advanced video generation model to date, offering significantly improved visual quality over 2.5 with richer textures, better lighting simulation, and stronger semantic alignment with complex prompts. The premium option in the Wan family for creators who demand the best from open-source lineage.

Pricing Tiers

Resolution / TierCostCredits
720p / 5s$0.630/req136 cr

Use Cases

High-fidelity environment renderingComplex scene generationPremium open-source workflowsResearch and fine-tuning

API Example

JavaScript
const response = await fetch("https://api.lumavo.com/v1/txt2video", {
  method: "POST",
  headers: {
    "Authorization": "Bearer YOUR_API_KEY",
    "Content-Type": "application/json"
  },
  body: JSON.stringify({
    model: "wan-2-6",
    prompt: "A futuristic cityscape at dusk with flying vehicles weaving between neon-lit skyscrapers",
    duration: 5,
    resolution: "720p"
  })
});

const { taskId } = await response.json();