---
title: "Seedance seedance-v1-pro API — Pricing, code samples | RunAPI"
url: "https://runapi.ai/models/seedance/v1-pro.md"
canonical: "https://runapi.ai/models/seedance/v1-pro.md"
locale: "en"
model: "Seedance"
provider: "Bytedance"
variant_id: "seedance-v1-pro"
sdk_model_id: "seedance-v1-pro"
modality: "video"
price_from_cents: 3
billing_unit: "second"
status: "active"
---

# Seedance seedance-v1-pro API

Same API, same SDK — switch variants by changing one parameter.

## Pricing

**$0.030** per second

Failed generations are not charged

## Spec sheet

| Field | Value |
|---|---|
| Model ID | `seedance-v1-pro` |
| Provider | Bytedance |
| Modality | video |
| Task type | asynchronous |
| Billing unit | second |
| API endpoint | `/api/v1/seedance/text_to_video` |
| Status | active |

## Install

```sh
npm install @runapi.ai/seedance
```

## Quickstart

```sh
curl -X POST https://api.runapi.ai/api/v1/seedance/text_to_video \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "model": "seedance-v1-pro", "prompt": "..." }'
```

```js
import RunAPI from "@runapi.ai/seedance";

const client = new RunAPI(process.env.RUNAPI_KEY);
const task = await client.create({
  model: "seedance-v1-pro",
  prompt: "...",
});
```

## FAQ

### Is the model ID stable across versions?

RunAPI keeps the model ID stable and handles compatible version refreshes without changing your request shape.

### What&#39;s the rate limit on this variant?

Per-key rate limits scale with usage tier. See pricing page for current limits.

### Can I switch variants later?

Yes — variant is a flag. Switch by changing the model parameter.

### Does it stream?

Where streaming is available, RunAPI streams end-to-end.

### Where do I report quality issues?

Open an issue on the public GitHub repo or email support.


## Related

Other Seedance variants:

- [seedance-1.5-pro](https://runapi.ai/models/seedance/1.5-pro.md) — `1.5-pro` · $0.040
- [seedance-2.0](https://runapi.ai/models/seedance/2.0.md) — `2.0` · $0.410
- [seedance-2.0-fast](https://runapi.ai/models/seedance/2.0-fast.md) — `2.0-fast` · $0.330
- [seedance-v1-lite](https://runapi.ai/models/seedance/v1-lite.md) — `v1-lite` · $0.020
- [seedance-v1-pro-fast](https://runapi.ai/models/seedance/v1-pro-fast.md) — `v1-pro-fast` · $0.020
