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

# Seedance 2 Pro

> ByteDance's flagship video model on Kyma. Multi-shot, dynamic camera, native audio bundled, pay per second.

## Overview

`seedance-2-pro` is ByteDance's flagship Seedance tier. Multi-shot composition, dynamic camera moves, native audio bundled. 720p output. Right when motion and energy matter — action, product motion, fast-cut social with synchronized sound.

## Specs

| Field             | Value                                                               |
| ----------------- | ------------------------------------------------------------------- |
| Model ID          | `seedance-2-pro`                                                    |
| Creator           | ByteDance                                                           |
| Best for          | Action, multi-shot scenes, social with synced audio, product motion |
| Default duration  | 5 seconds                                                           |
| Max duration      | 10 seconds                                                          |
| Input modalities  | Text, image (I2V)                                                   |
| Output modalities | Video, audio                                                        |
| Resolution        | 720p                                                                |
| Audio             | Bundled (synced with motion)                                        |
| Pricing mode      | Per second                                                          |

## Pricing

|                 |    Cost   |
| --------------- | :-------: |
| Per second      | \$0.40959 |
| Default 5s clip | \$2.04795 |

## Use this when

* The clip needs energetic motion, multi-shot composition, or dynamic camera moves.
* You want native audio synchronized with the action without post work.
* You're producing performance content — sports, dance, product motion, action.

## Pick something else when

* Cost matters more than fidelity and you can accept \~20% less polish: use [`seedance-2-fast`](/models/seedance-2-fast).
* You want a 1080p cinematic look (not 720p): use [`kling-3-pro`](/models/kling-3-pro) or [`kling-3-pro-audio`](/models/kling-3-pro-audio).

## Example

```bash theme={null}
curl -X POST https://kymaapi.com/v1/videos/generations \
  -H "Authorization: Bearer $KYMA_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "seedance-2-pro",
    "prompt": "a runner sprints on a rooftop at golden hour, tracking shot, camera matches their stride",
    "duration": 5
  }'
```

The endpoint is async — POST returns `202` with a `job_id`; poll [`GET /v1/jobs/{id}`](/api-reference/videos-generations#poll-for-the-result) until status is `succeeded`.

## See also

* [Video Generation](/models/video-generation) — full family overview
* [`seedance-2-fast`](/models/seedance-2-fast) — same family, \~20% cheaper, faster turnaround
* [`POST /v1/videos/generations`](/api-reference/videos-generations) — endpoint reference
