> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mixroute.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Wan 3.0 Video Prime

> High-speed Wan 3.0 video model with the same input modes as the standard version.

High-speed Wan 3.0 video model with the same input modes as the standard version.

## Model Information

| Field      | Description                |
| ---------- | -------------------------- |
| `model`    | wan3.0-video-prime         |
| `endpoint` | POST /v1/video/generations |

## Capabilities and Usage

* Supports 480P, 720P, and 1080P; output duration is 2-30 seconds or -1 for automatic duration.
* Use metadata.input.prompt/media and metadata.parameters. Prime shares the Wan 3.0 schema, not the older Wan 2.6 img\_url/size schema.
* Reference videos count toward the 30-second input-plus-output duration limit. audio=false requests a silent video.

## Request Example

Set `MIXROUTE_API_KEY` before making the request.

```bash theme={null}
curl --request POST "https://api.mixroute.ai/v1/video/generations" \
  --header "Authorization: Bearer $MIXROUTE_API_KEY" \
  --header "Content-Type: application/json" \
  --data '{
  "model": "wan3.0-video-prime",
  "metadata": {
    "input": {
      "prompt": "A red ceramic mug slowly rotates on a white tabletop. Static camera, soft studio lighting."
    },
    "parameters": {
      "resolution": "480P",
      "duration": 2,
      "audio": false,
      "prompt_extend": false
    }
  }
}'
```

## Request Fields

| Field                 | Description                             |
| --------------------- | --------------------------------------- |
| `model`               | Required. Use the exact model ID above. |
| `metadata.input`      | Prompt and model-specific media input.  |
| `metadata.parameters` | Model-specific generation settings.     |

Submission creates an asynchronous task. Save the returned MixRoute task ID and poll [Query Video Task](/en/api-reference/endpoint/query-video-task) until a terminal state. Do not resubmit solely because a client times out.

Complete request format: [wan](/en/api-reference/endpoint/wan).
