> ## 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 2.6 R2V Flash

> Fast Wan 2.6 reference-to-video model for subject-consistent generation.

Fast Wan 2.6 reference-to-video model for subject-consistent generation.

## Model Information

| Field      | Description                |
| ---------- | -------------------------- |
| `model`    | wan2.6-r2v-flash           |
| `endpoint` | POST /v1/video/generations |

## Capabilities and Usage

* Requires metadata.input.prompt and reference\_urls. Use metadata.parameters.size, such as 1280\*720; duration is an integer from 2 to 10 seconds.
* metadata.parameters.audio defaults to true. Set false for silent output; on I2V Flash it overrides input.audio\_url.
* Keep model at the root and input/parameters under metadata. Do not copy the Wan 2.7 media schema into Wan 2.6 requests.

## Request Example

Set `MIXROUTE_API_KEY` before making the request.

Replace the example.com URL with a publicly accessible source image.

```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": "wan2.6-r2v-flash",
  "metadata": {
    "input": {
      "prompt": "Show character1 on a white tabletop. Static camera.",
      "reference_urls": [
        "https://example.com/reference.png"
      ]
    },
    "parameters": {
      "size": "1280*720",
      "duration": 2,
      "audio": 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).
