We use essential cookies to make our site work. With your consent, we may also use non-essential cookies to improve user experience and analyze website traffic…

DeepInfra raises $107M Series B to scale the inference cloud — read the announcement

Wan-AI logo

Wan-AI/

Wan2.2-T2V-A14B

$0.0750

/ second

The Wan2.2 T2V A14B is a next-generation 14B-parameter video foundation model by Wan-AI featuring a novel two-stage denoising architecture. It produces 480P videos with improved visual coherence and detail, generating 2 or 5 second clips at 16fps from text prompts.

Wan-AI/Wan2.2-T2V-A14B cover image

HTTP/cURL API

You can use cURL or any other http client to run inferences:

curl -X POST \
    -d '{"prompt": "An elderly wizard stands in the center of his tower study, arms sweeping wide as he conjures a spiraling vortex of glowing embers and autumn leaves that whirls up around his body. His long robes and silver beard billow in the magical wind, floating candles, scrolls and open books drifting in slow orbit around him, warm golden light flaring across the shelves. Steady wide shot, photorealistic, strong fluid motion, sharp focus.", "seconds": 5, "resolution": "720p", "orientation": "landscape"}'  \
    -H "Authorization: bearer $DEEPINFRA_TOKEN"  \
    -H 'Content-Type: application/json'  \
    'https://api.deepinfra.com/v1/inference/Wan-AI/Wan2.2-T2V-A14B'
copy

which will give you back something similar to:

{
  "video_url": "/model/inference/pyramid_sample.mp4",
  "seed": "12345",
  "request_id": null,
  "inference_status": {
    "status": "unknown",
    "runtime_ms": 0,
    "cost": 0.0,
    "tokens_generated": 0,
    "tokens_input": 0,
    "output_length": 0
  }
}

copy

Input fields

Input Schema

Output Schema