Seedance 2.0 Mini Text to Video
doubao/seedance-2.0-mini/text-to-video
Seedance 2.0 Mini Text to Video is ByteDance's faster, lower-cost text-to-video model for cinematic multi-shot videos. It generates narrative sequences from text prompts with AI camera control, consistent characters across scenes, 480P / 720P / 1080P / 4K output, 4-15s duration, and flexible aspect ratios. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
Examples
Parameters
| Name | Type | Default | Constraints | Description |
|---|---|---|---|---|
| prompt *Prompt | textarea | — | ≤ 5000 chars | Describe the scene, action, camera movement, and mood for the video. |
| ratioAspect Ratio | select | 16:9 | 16:9 | 9:16 | 4:3 | 3:4 | 1:1 | 21:9 | The aspect ratio of the generated video. |
| resolutionResolution | select | 720p | 480p | 720p | The output video resolution. |
| durationDuration | slider | 5 | 4 ~ 15 · step 1 | The duration of the generated video in seconds (4-15s). |
| generate_audioGenerate Audio | boolean | true | — | Whether to generate native audio synchronized with the output video. Defaults to true. |
| enable_web_searchEnable Web Search | boolean | false | — | Enable web search for real-time information. |
| return_last_framereturn the last frame | boolean | — | — | Should the last frame of the generated video be returned? |
API
Call this model through one unified REST API. Get a key on the API Keys page.
cURL
# 1) Submit — returns { "task_uuid": "..." }
curl -X POST "https://www.namifusion.com/api/v1/marketplace/run/doubao/seedance-2.0-mini/text-to-video" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"input": {
"prompt": "A cinematic portrait, dramatic rim light, shallow depth of field",
"ratio": "16:9",
"resolution": "720p",
"duration": 5,
"generate_audio": true,
"enable_web_search": false
}
}'
# 2) Poll until status is "completed", then read the output URLs
curl "https://www.namifusion.com/api/v1/marketplace/run/tasks/TASK_UUID" \
-H "Authorization: Bearer YOUR_API_KEY"Python
import time, requests
API_KEY = "YOUR_API_KEY"
HEADERS = {"Authorization": f"Bearer {API_KEY}"}
# 1) Submit
resp = requests.post(
"https://www.namifusion.com/api/v1/marketplace/run/doubao/seedance-2.0-mini/text-to-video",
headers=HEADERS,
json={
"input": {
"prompt": "A cinematic portrait, dramatic rim light, shallow depth of field",
"ratio": "16:9",
"resolution": "720p",
"duration": 5,
"generate_audio": True,
"enable_web_search": False
}
},
)
resp.raise_for_status() # 401/402/429/5xx stop here instead of polling a bad task
task = resp.json()
# 2) Poll until a terminal state (completed / failed / cancelled).
# This model is allowed up to 300s server-side.
deadline = time.time() + 360
while task.get("status") not in ("completed", "failed", "cancelled"):
if time.time() > deadline:
raise TimeoutError(f"still {task.get('status')} — keep the task_uuid and poll later")
time.sleep(3)
poll = requests.get(f"https://www.namifusion.com/api/v1/marketplace/run/tasks/{task['task_uuid']}", headers=HEADERS)
poll.raise_for_status()
task = poll.json()
print(task["status"], task.get("output"))JavaScript
const API_KEY = "YOUR_API_KEY";
const HEADERS = { Authorization: `Bearer ${API_KEY}` };
// 1) Submit
const resp = await fetch("https://www.namifusion.com/api/v1/marketplace/run/doubao/seedance-2.0-mini/text-to-video", {
method: "POST",
headers: { ...HEADERS, "Content-Type": "application/json" },
body: JSON.stringify({
"input": {
"prompt": "A cinematic portrait, dramatic rim light, shallow depth of field",
"ratio": "16:9",
"resolution": "720p",
"duration": 5,
"generate_audio": true,
"enable_web_search": false
}
}),
});
if (!resp.ok) throw new Error(`submit failed: ${resp.status} ${await resp.text()}`);
let task = await resp.json();
// 2) Poll until a terminal state (completed / failed / cancelled).
// This model is allowed up to 300s server-side.
const deadline = Date.now() + 360 * 1000;
while (!["completed", "failed", "cancelled"].includes(task.status)) {
if (Date.now() > deadline) throw new Error(`still ${task.status} — keep the task_uuid and poll later`);
await new Promise((r) => setTimeout(r, 3000));
const poll = await fetch(`https://www.namifusion.com/api/v1/marketplace/run/tasks/${task.task_uuid}`, { headers: HEADERS });
if (!poll.ok) throw new Error(`poll failed: ${poll.status}`);
task = await poll.json();
}
console.log(task.status, task.output);Documentation
Seedance 2.0 Mini Text to Video API
A faster, lower-cost cinematic text-to-video model with native audio and up to 4K output.
Seedance 2.0 Mini Text to Video is ByteDance’s efficient text-to-video model for generating short, cinematic multi-shot sequences from natural language. It combines strong prompt adherence, AI camera control, cross-scene character consistency, flexible output formats, and native audio generation, while delivering no cold start performance and cost-effective scaling for production workloads.
🚀 Key Features
- Prompt-based video generation: Generate videos directly from natural-language prompts describing scene, action, camera movement, and mood.
- Reference-guided control: Use reference images, videos, and audio to guide visual style, character consistency, composition, motion, or sound direction.
- Cinematic multi-shot output: Optimized for narrative short-form video generation with stronger scene continuity and camera-aware storytelling.
- Native audio generation: Generate synchronized audio together with the output video to streamline post-production.
- Flexible output options: Supports multiple aspect ratios, 4–15 second durations, and 480p to 4K resolution tiers.
- Fast and production-friendly: Designed for lower cost, strong performance, and no cold starts, making it suitable for iterative creation and scaled deployment.
🛠️ Technical Specifications
| Item | Specification |
|---|---|
| Model Name | Seedance 2.0 Mini Text to Video |
| Model ID | bytedance/seedance-2.0-mini/text-to-video |
| Model Type | Text-to-video |
| Model Architecture | Multimodal conditional video generation model using text prompts |
| Input Format | Text prompt |
| Output Format | Video(optionally with synchronized native audio) |
| Prompt Guidance | Best results come from describing scene, subject, action, camera movement, lighting, and mood |
| Aspect Ratio | 16:9, 9:16, 4:3, 3:4, 1:1, 21:9 |
| Default Aspect Ratio | 16:9 |
| Resolution | 480p, 720p, 1080p, 4k |
| Default Resolution | 720p |
| Duration | 4–15 seconds |
| Default Duration | 5 seconds |
| Audio Generation | Supported, synchronized native audio enabled by default |
| Real-time Information Option | Optional web search support for prompts requiring current information |
| Performance Profile | Faster inference, lower cost, no cold start |
Sample Prompts
A cinematic night market scene, warm lantern light, people walking through a narrow street, soft camera tracking movement, steam rising from food stalls, realistic atmosphere, gentle ambient motion, rich colors, detailed urban background.A lone traveler standing on a seaside cliff at dawn, wind moving the coat, camera slowly pushing in from behind to a side close-up, pale sky, restrained but epic mood.Inside a futuristic laboratory, a humanoid robot powers on and slowly raises its head, cool lighting reflecting on metallic surfaces, low-angle orbit camera, quiet and tense atmosphere.
💰 Pricing
| Service Type | Resolution | Price |
|---|---|---|
| Video Gen (T2V/I2V) | all | $3.5 / 1M Tokens |
| Video Gen (V2V) | all | $2.1 / 1M Tokens |
Estimate Costs by Duration
| Resolution | Price per 5 seconds | Price per second |
|---|---|---|
| 480p | $0.30 | $0.06 |
| 720p | $0.60 | $0.12 |
| 1080p | $1.50 | $0.30 |
| 4k | $3.00 | $0.60 |
💡 Best Use Cases
- Social media content production: Create vertical, square, widescreen, or ultrawide short-form videos for platform-specific campaigns.
- Creative concepting and previs: Rapidly prototype scenes, camera moves, and mood for advertising, branded content, and film development.
- Character and style consistency workflows: Use reference images to maintain visual identity across shots and scenes.
- Audio-visual narrative clips: Generate short cinematic sequences with synchronized sound for immersive storytelling and promotional content.
🔗 Related Models
- ByteDance Seedance 2.0 Mini Image-to-Video: Better suited for workflows that begin from a starting image plus prompt.
Related models
xAI Grok Imagine Video v1.5 Text to Video
Generate 1-15 second videos from text prompts at 480p, 720p, or 1080p.
MiniMax H3 Text to Video
MiniMax H3 Text to Video generates coherent 2K videos from text prompts, with flexible 4-15 second duration and six selectable aspect ratios for cinematic scenes, creative videos, and production workflows. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
Kling Omni Video O3 Standard Text-To-Video
Kling Omni Video O3 is Kuaishou's advanced unified multi-modal video model with MVL (Multi-modal Visual Language) technology. Text-to-Video mode generates cinematic videos from text prompts with subject consistency, natural physics simulation, and precise semantic understanding. Supports audio generation. Ready-to-use REST API, best performance, no coldstarts, affordable pricing.
Kling Omni Video O1 Text-To-Video
Kling Omni Video O1 is Kuaishou's first unified multi-modal video model with MVL (Multi-modal Visual Language) technology. Text-to-Video mode generates cinematic videos from text prompts with subject consistency, natural physics simulation, and precise semantic understanding. Ready-to-use REST API, best performance, no coldstarts, affordable pricing.
Kling 3.0
Kling 3.0 delivers high-quality text-to-video generation with smooth motion, cinematic visuals, accurate prompt adherence, and native audio for ready-to-share clips. Ready-to-use REST inference API, best performance, no cold starts, affordable pricing.
Kling V2.6 Text to Video API
Kling 2.6 delivers top-tier text-to-video generation with smooth motion, cinematic visuals, strong prompt adherence, and native audio for ready-to-share clips. Ready-to-use REST inference API, best performance, no cold starts, affordable pricing.
Gemini Omni Flash Text to Video API
Gemini Omni Flash Text to Video creates short AI videos with synchronized audio from text prompts, combining visual generation and audio output for fast multimodal video creation. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
Seedance 2.5 Text-to-Video
Seedance 2.5 delivers next-generation high-quality video generation with text-to-video, multiple aspect ratios, 480p/720p/1080p resolution options, and AI-synchronized audio generation. It features improved prompt following, camera control, and motion quality.