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

# Vidu Q3 Turbo — Start-End Frame to Video

> Vidu Q3 Turbo f2v generation on RouterBase via one OpenAI-compatible endpoint.

|                 |                          |
| --------------- | ------------------------ |
| **Model ID**    | `vidu/q3-turbo-f2v`      |
| **Family**      | `vidu-q3-turbo-startend` |
| **Task**        | `image-to-video`         |
| **Resolutions** | 540p / 720p / 1080p      |
| **Duration**    | 1–16s (default 5)        |
| **Modality**    | Video                    |

## Endpoint

```http theme={null}
POST https://routerbase.com/v1/videos/generations
```

Async — returns `{id, status: "pending"}`; poll `GET /v1/videos/generations/{id}` until `success` or `failed`.

## Pricing

Flat per-second pricing with **native audio included** — see [Video Generation](/api-reference/videos).

## Parameters

<ParamField body="prompt" type="string" required>
  Text prompt for the transition. Max 2000 characters.
</ParamField>

<ParamField body="image_urls" type="string[]" required>
  Exactly two images — the start frame and the end frame.
</ParamField>

<ParamField body="duration" type="integer" default="5">
  Clip length in seconds. 1–16s (default 5).
</ParamField>

<ParamField body="resolution" type="enum" default="720p">
  Output resolution. One of 540p / 720p / 1080p.
</ParamField>

<ParamField body="movement_amplitude" type="enum" default="auto">
  Camera/subject motion. One of `auto`, `small`, `medium`, `high`.
</ParamField>

<ParamField body="seed" type="integer">
  Random-generator initialiser. Range `[0, 2147483647]`.
</ParamField>

## Example

```bash theme={null}
curl https://routerbase.com/v1/videos/generations \
  -H "Authorization: Bearer $ROUTERBASE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "vidu/q3-turbo-f2v",
    "image_urls": ["https://example.com/start.jpg", "https://example.com/end.jpg"],
    "prompt": "smooth morph from the first frame to the last"
  }'
```

## See also

Full request/response schema and pricing: [Video Generation](/api-reference/videos).
