# seedance-2.0/text-to-video

> Seedance 2.0 (Text-to-Video) generates Hollywood-grade cinematic videos from text prompts with native audio-visual synchronization, director-level camera and lighting control, and exceptional motion stability. Built on Seed's unified multimodal architecture, it leads on instruction adherence, motion quality, and visual aesthetics.

- **Provider:** ByteDance
- **Category:** text-to-video
- **Price:** $0.4080 (~~$0.4800~~) per run

## Key Features

- Unified multimodal architecture — a single model handling text, image, audio and video for comprehensive creative flexibility.
- Native audio-visual synchronization — generates video with synchronized sound effects, dialogue and ambience in a single pass.
- Director-level control — granular control over camera movement, lighting, shadows and character performance.
- Production-grade cinematic quality with Hollywood-level visual coherence.
- Exceptional motion stability — industry-leading motion coherence with stable subjects and fluid transitions.
- Strong instruction adherence — accurately renders complex multi-element scenes from detailed prompts.

## Parameters

| Parameter | Required | Description |
| --- | --- | --- |
| `prompt` | Yes | Detailed cinematic description of the scene to generate. |
| `aspect_ratio` | No | Output format: 16:9 (default), 9:16, 4:3, 3:4, 1:1, 21:9. |
| `duration` | No | Video length in seconds: 4-15 (default: 5). |
| `resolution` | No | Output resolution: 480p, 720p (default), 1080p, or 4k. |
| `reference_images` | No | Up to 9 reference image URLs for style/subject guidance. |
| `reference_videos` | No | Up to 3 reference video URLs (max 15s total) for motion guidance. |
| `reference_audios` | No | Up to 3 reference audio URLs for audio style guidance. |
| `enable_web_search` | No | Enable web search for enhanced prompt understanding. |
| `generate_audio` | No | Generate synchronized audio (default: true). |

## How to Use

1. Write a cinematic prompt — describe subject, action, camera movement, lighting and mood.
2. Choose aspect ratio: 16:9 for widescreen, 9:16 for vertical, or others.
3. Set duration from 4 to 15 seconds.
4. Optionally add reference images, videos, or audio for style guidance.
5. Generate and download your video with synchronized audio.

## Code Examples

### Python

```python
import os
import requests

response = requests.post(
    "https://aircube.ai/api/v3/seedance-2.0/text-to-video",
    headers={
        "Authorization": "Bearer " + os.environ["AIRCUBE_API_KEY"],
        "Content-Type": "application/json",
    },
    json={
    "prompt": "Aerial shot of a coastal city at golden hour, camera slowly descending toward the waterfront, waves crashing against the pier",
    "duration": 8,
    "aspect_ratio": "16:9",
    "resolution": "1080p",
    "generate_audio": true
},
    timeout=300,
)
data = response.json()

if data["success"]:
    print("ID:", data["data"]["id"], "Status:", data["data"]["status"])
else:
    print("Error:", data["error"]["message"])
```

### Node.js

```javascript
const response = await fetch("https://aircube.ai/api/v3/seedance-2.0/text-to-video", {
  method: "POST",
  headers: {
    "Authorization": "Bearer " + process.env.AIRCUBE_API_KEY,
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
  "prompt": "Aerial shot of a coastal city at golden hour, camera slowly descending toward the waterfront, waves crashing against the pier",
  "duration": 8,
  "aspect_ratio": "16:9",
  "resolution": "1080p",
  "generate_audio": true
}),
});

const data = await response.json();

if (data.success) {
  console.log("ID:", data.data.id, "Status:", data.data.status);
} else {
  console.error("Error:", data.error.message);
}
```

### cURL

```curl
curl -X POST "https://aircube.ai/api/v3/seedance-2.0/text-to-video" \
  -H "Authorization: Bearer $AIRCUBE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "prompt": "Aerial shot of a coastal city at golden hour, camera slowly descending toward the waterfront, waves crashing against the pier",
  "duration": 8,
  "aspect_ratio": "16:9",
  "resolution": "1080p",
  "generate_audio": true
}'
```

### Python (Async)

```python
import os
import time
import requests

# 1. Submit
response = requests.post(
    "https://aircube.ai/api/v3/seedance-2.0/text-to-video",
    headers={
        "Authorization": "Bearer " + os.environ["AIRCUBE_API_KEY"],
        "Content-Type": "application/json",
    },
    json={
    "prompt": "Aerial shot of a coastal city at golden hour, camera slowly descending toward the waterfront, waves crashing against the pier",
    "duration": 8,
    "aspect_ratio": "16:9",
    "resolution": "1080p",
    "generate_audio": true
},
    timeout=300,
)
data = response.json()

if not data["success"]:
    print("Error:", data["error"]["message"])
    exit(1)

generation_id = data["data"]["id"]
print(f"Submitted: {generation_id}")

# 2. Poll until completed
while True:
    time.sleep(5)
    r = requests.get(
        f"https://aircube.ai/api/v3/status/{generation_id}",
        headers={"Authorization": "Bearer " + os.environ["AIRCUBE_API_KEY"]},
    )
    result = r.json()["data"]

    if result["status"] == "completed":
        print(result["output_url"])
        break
    elif result["status"] == "failed":
        print("Generation failed")
        break
```

### Node.js (Async)

```javascript
// 1. Submit
const response = await fetch("https://aircube.ai/api/v3/seedance-2.0/text-to-video", {
  method: "POST",
  headers: {
    "Authorization": "Bearer " + process.env.AIRCUBE_API_KEY,
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
  "prompt": "Aerial shot of a coastal city at golden hour, camera slowly descending toward the waterfront, waves crashing against the pier",
  "duration": 8,
  "aspect_ratio": "16:9",
  "resolution": "1080p",
  "generate_audio": true
}),
});
const data = await response.json();

if (!data.success) {
  console.error("Error:", data.error.message);
  process.exit(1);
}

const generationId = data.data.id;
console.log("Submitted:", generationId);

// 2. Poll until completed
while (true) {
  await new Promise((r) => setTimeout(r, 5000));
  const res = await fetch(
    `https://aircube.ai/api/v3/status/${generationId}`,
    { headers: { "Authorization": "Bearer " + process.env.AIRCUBE_API_KEY } },
  );
  const result = (await res.json()).data;

  if (result.status === "completed") {
    console.log(result.output_url);
    break;
  } else if (result.status === "failed") {
    console.error("Generation failed");
    break;
  }
}
```

### cURL (Async)

```curl
# 1. Submit
RESPONSE=$(curl -s -X POST "https://aircube.ai/api/v3/seedance-2.0/text-to-video" \
  -H "Authorization: Bearer $AIRCUBE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "prompt": "Aerial shot of a coastal city at golden hour, camera slowly descending toward the waterfront, waves crashing against the pier",
  "duration": 8,
  "aspect_ratio": "16:9",
  "resolution": "1080p",
  "generate_audio": true
}')

ID=$(echo "$RESPONSE" | jq -r '.data.id')
echo "Submitted: $ID"

# 2. Poll until completed
while true; do
  sleep 5
  STATUS_RES=$(curl -s "https://aircube.ai/api/v3/status/$ID" \
    -H "Authorization: Bearer $AIRCUBE_API_KEY")
  STATUS=$(echo "$STATUS_RES" | jq -r '.data.status')

  if [ "$STATUS" = "completed" ]; then
    echo "$STATUS_RES" | jq -r '.data.output_url'
    break
  elif [ "$STATUS" = "failed" ]; then
    echo "Generation failed"; break
  fi
done
```

## Pricing

| Resolution | Duration | Cost |
| --- | --- | --- |
| 480p | 4s | $0.48 |
| 480p | 5s | $0.60 |
| 480p | 6s | $0.72 |
| 480p | 8s | $0.96 |
| 480p | 10s | $1.20 |
| 480p | 12s | $1.44 |
| 480p | 15s | $1.80 |
| 720p | 4s | $0.96 |
| 720p | 5s | $1.20 |
| 720p | 6s | $1.44 |
| 720p | 8s | $1.92 |
| 720p | 10s | $2.40 |
| 720p | 12s | $2.88 |
| 720p | 15s | $3.60 |
| 1080p | 4s | $2.40 |
| 1080p | 5s | $3.00 |
| 1080p | 6s | $3.60 |
| 1080p | 8s | $4.80 |
| 1080p | 10s | $6.00 |
| 1080p | 12s | $7.20 |
| 1080p | 15s | $9.00 |
| 4k | 4s | $4.80 |
| 4k | 5s | $6.00 |
| 4k | 6s | $7.20 |
| 4k | 8s | $9.60 |
| 4k | 10s | $12.00 |
| 4k | 12s | $14.40 |
| 4k | 15s | $18.00 |

### Billing Rules

- 480p / 4s: $0.48.
- 720p / 4s: $0.96.
- 1080p / 4s: $2.40.
- 4k / 4s: $4.80.
- Longer durations scale proportionally.
- Failed generations are not charged.

## Best Use Cases

- Film production — generate cinematic footage from screenplays and treatments.
- Commercials — create professional ad content directly from creative briefs.
- Music videos — generate visual sequences from lyrical descriptions.
- Premium social media — produce high-quality short-form video content.
- Film visualization — prototype scenes and camera movements before production.

## Pro Tips

- Write prompts like a screenplay — subject, action, setting, camera, lighting.
- Specify camera movements explicitly: 'slow dolly in', 'handheld tracking shot', 'aerial crane up'.
- Include temporal language: 'gradually', 'suddenly', 'the camera slowly reveals'.
- Use reference images (up to 9) for character and style consistency across clips.
- Start with 5s at 480p for fast iterations, then render final at 1080p or 4K.

## Notes

- Audio is generated natively by default — no need for separate audio tools.
- Duration range: 4-15 seconds (continuous selection).
- Supports up to 9 reference images, 3 reference videos, and 3 reference audios.
- Median generation time: approximately 252 seconds.

## FAQ

**Q: What is the Seedance 2.0 Text to Video API?**

A REST API that generates cinematic video with synchronized audio directly from text prompts, powered by ByteDance's Seed unified multimodal architecture.

**Q: Do I need an image to use Seedance 2.0 Text to Video?**

No — this model generates video entirely from text. You can optionally provide reference images, videos, or audio for style guidance.

**Q: How long can the generated video be?**

4 to 15 seconds with continuous duration selection.

**Q: Does it generate audio too?**

Yes — native audio-visual synchronization means your video comes with matching sound effects, dialogue, and ambience by default.

**Q: How much does Seedance 2.0 Text to Video cost?**

Starting at $0.60 for a 480p 5-second clip, scaling with resolution and duration. See the Pricing table for full details.

**Q: Can I use outputs commercially?**

Yes — generated videos are yours to use. Check the Pricing page for plan-specific limits.
