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

# Seedance 2.0 Fast R2V

> Seedance 2.0 Fast R2V video API via SnapGen: reference-to-video mode of Seedance 2.0 Fast with image, video, and audio references, billed from prepaid balance.

`seedance-2.0-fast-r2v` is the reference-to-video mode of Seedance 2.0 Fast with image, video, and audio references.

| Property                | Value                                                                                                                   |
| ----------------------- | ----------------------------------------------------------------------------------------------------------------------- |
| Model ID                | `seedance-2.0-fast-r2v`                                                                                                 |
| Input                   | prompt + images + video + audio                                                                                         |
| Output                  | 480p, 720p video with native audio                                                                                      |
| Duration                | 4 to 15 seconds                                                                                                         |
| Price                   | 480p: \$0.07 per second; 720p: \$0.135 per second                                                                       |
| Reference video billing | Billed seconds = output seconds + reference seconds, measured by the gateway (15 s billed if a clip cannot be measured) |

Confirm live rates on the [models page](https://snapgen.org/models/seedance-2-fast).

<ParamField body="model" type="string" required>
  Set to `seedance-2.0-fast-r2v`.
</ParamField>

<ParamField body="prompt" type="string" required>
  Describe the subject, action, camera movement, lighting, and audio intent.
</ParamField>

<ParamField body="seconds" type="string" default="10">
  Output length: 4 to 15 seconds.
</ParamField>

<ParamField body="aspect_ratio" type="string">
  One of `21:9`, `16:9`, `4:3`, `1:1`, `3:4`, `9:16`, `adaptive`. `adaptive` follows the input image or video. Send it explicitly; do not send a pixel `size`.
</ParamField>

<ParamField body="resolution" type="string" default="720p">
  One of `480p`, `720p`. The price depends on the resolution.
</ParamField>

<ParamField body="image_urls" type="string[]">
  Up to 9 public `http`/`https` image URLs, each up to 30 MB (JPEG, PNG, WEBP, BMP, GIF).
</ParamField>

<ParamField body="video_urls" type="string[]">
  Up to 3 public source or reference clips, each up to 50 MB (MP4, MOV).
  The gateway reads each clip's length from its MP4/MOV header with HTTP range requests and bills that length, rounded up to whole seconds (up to 15 s). Host clips where range requests work, such as S3, R2, or most CDNs; a clip that cannot be measured bills 15 s.
</ParamField>

<ParamField body="audio_urls" type="string[]">
  Up to 3 public reference audio URLs, each up to 15 MB (MP3, WAV).
</ParamField>

<ParamField body="generate_audio" type="boolean" default="true">
  Set to `false` for a silent video.
</ParamField>

## Request

```bash theme={null}
curl https://api.snapgen.org/v1/videos \
  -H "Authorization: Bearer $SNAPGEN_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "seedance-2.0-fast-r2v",
    "prompt": "The dancer from the reference performs the routine on a beach at dusk",
    "seconds": "5",
    "aspect_ratio": "21:9",
    "resolution": "720p",
    "image_urls": ["https://example.com/reference.jpg"]
  }'
```

The response returns a queued task `id`. Poll and download with the same `model`:

```bash theme={null}
curl "https://api.snapgen.org/v1/videos/$VIDEO_ID?model=seedance-2.0-fast-r2v" \
  -H "Authorization: Bearer $SNAPGEN_API_KEY"

curl -L "https://api.snapgen.org/v1/videos/$VIDEO_ID/content?model=seedance-2.0-fast-r2v" \
  -H "Authorization: Bearer $SNAPGEN_API_KEY" \
  --output video.mp4
```

See the [Video API workflow](/api-reference/video-generation) for polling intervals, webhooks, and failure handling.

## Price examples

| Resolution | Per second | 5-second clip |
| ---------- | ---------- | ------------- |
| 480p       | \$0.07     | \$0.35        |
| 720p       | \$0.135    | \$0.675       |

<Note>
  Media inputs must be public `http` or `https` URLs. Private network addresses and
  local files are rejected. Failed generations are not charged.
</Note>
