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

# Vidu Q3 Pro Start-End Frame to Video

Vidu Q3 Pro Start-End Frame to Video generates high-quality videos from start and end frame images, with text-guided motion interpolation, supporting up to 1080p resolution.

<Tip>
  This is an **async** API that only returns the task\_id of the async task. Use the task\_id to call the [Get Async Task Result API](/docs/models/reference-get-async-task-result) to retrieve the generated result.
</Tip>

## Request Headers

<ParamField header="Content-Type" type="string" required={true}>
  Enum: `application/json`
</ParamField>

<ParamField header="Authorization" type="string" required={true}>
  Bearer authentication format: Bearer \{\{API Key}}.
</ParamField>

## Request Body

<ParamField body="seed" type="integer">
  Random seed for reproducible results. Set to 0 for random.
</ParamField>

<ParamField body="audio" type="boolean" default={true}>
  Whether to generate audio along with the video.
</ParamField>

<ParamField body="images" type="array" required={true}>
  Two image URLs or Base64-encoded images. The first is the start frame, the second is the end frame. Supported formats: png, jpeg, jpg, webp. Maximum 50MB per image, minimum resolution 128x128, aspect ratio must be less than 1:4 or greater than 4:1. The resolutions of the start and end frame images must be similar (start/end ratio between 0.8 and 1.25).

  Array length: 2 - 2
</ParamField>

<ParamField body="is_rec" type="boolean">
  Whether to enable recommendation mode.
</ParamField>

<ParamField body="prompt" type="string">
  Text describing the desired video motion between the start and end frames.

  Length limit: 0 - 1500
</ParamField>

<ParamField body="wm_url" type="string">
  Custom watermark image URL.
</ParamField>

<ParamField body="duration" type="integer" default={5}>
  Duration of the generated video (seconds). Range: 1-16.

  Range: \[1, 16]
</ParamField>

<ParamField body="off_peak" type="boolean" default={false}>
  Whether to use off-peak mode for lower cost.
</ParamField>

<ParamField body="watermark" type="boolean">
  Whether to add a watermark.
</ParamField>

<ParamField body="resolution" type="string" default="720p">
  Resolution of the generated video.

  Possible values: `540p`, `720p`, `1080p`
</ParamField>

<ParamField body="wm_position" type="integer" default={3}>
  Watermark position: 1=top-left, 2=top-right, 3=bottom-right, 4=bottom-left.

  Range: \[1, 4]
</ParamField>

## Response

<ResponseField name="task_id" type="string" required={true}>
  Use the task\_id to call the [Get Async Task Result API](/docs/models/reference-get-async-task-result) to retrieve the generated output.
</ResponseField>
