Video · Bytedance

Seedance

Text and image-to-video with native audio-video joint synthesis, up to 15-second multi-shot clips.

Operational · 6 variants · から $0.020
# Works with Claude Code, Codex, Gemini CLI, Cursor, and 50+ agents
npx skills add runapi-ai/seedance -g
The -g flag installs globally so every project picks it up.
Or paste this prompt to your AI agent:
Install the Seedance skill for me:

1. Clone https://github.com/runapi-ai/seedance
2. Copy the skills/seedance/ directory into your
   user-level skills directory (e.g. ~/.claude/skills/
   for Claude Code, ~/.codex/skills/ for Codex).
3. Verify that SKILL.md is present.
4. Confirm the install path when done.
概要

Seedance is Bytedance's video generation model featuring audio-video joint synthesis and support for multi-shot clips up to 15 seconds. It maintains temporal coherence and scene continuity across generated sequences.

  • Installable agent skill
  • Unified API key
  • SDK examples included
  • 失敗した生成は課金されません
バリアント

バリアント

Variant Billing From
seedance-1.5-pro second $0.040 見る →
seedance-2.0 second $0.410 見る →
seedance-2.0-fast second $0.330 見る →
seedance-v1-lite second $0.020 見る →
seedance-v1-pro second $0.030 見る →
seedance-v1-pro-fast second $0.020 見る →
AGENT USAGE

Use this model from your agent

Prompt + SDK example
# User prompt to the agent
"Generate a 10-second product reveal video: a smartphone emerges from smoke with cinematic lighting and ambient bass."
// Code generated by the agent via @runapi.ai/seedance
import { SeedanceClient } from '@runapi.ai/seedance';

const client = new SeedanceClient();
const result = await client.textToVideo.run({
  model: 'seedance-1.5-pro',
  prompt: 'Generate a 10-second product reveal video: a smartphone emerges from smoke with cinematic lighting and ambient bass.',
});
@runapi.ai/seedance npm
仕組み

How to call this model

01

Install the skill

Add the model skill to your agent or install the SDK package.

02

Authenticate once

Use your RunAPI key for every supported model.

03

Send a request

Use the unified schema for the endpoint you need.

04

Receive output

Poll by task ID or handle the callback when the generation completes.

SDK QUICKSTART

SDK quickstart

runapi.ai
curl -X POST https://runapi.ai/api/v1/seedance/text_to_video \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "model": "seedance-1.5-pro",
  "prompt": "Generate a 10-second product reveal video: a smartphone emerges from smoke with cinematic lighting and ambient bass."
}'
import { SeedanceClient } from "@runapi.ai/seedance";

const client = new SeedanceClient();
const result = await client.textToVideo.run({
    model: "seedance-1.5-pro",
    prompt: "Generate a 10-second product reveal video: a smartphone emerges from smoke with cinematic lighting and ambient bass.",
});
require "runapi/seedance"

client = RunApi::Seedance::Client.new
result = client.text_to_video.run(
    model: "seedance-1.5-pro",
    prompt: "Generate a 10-second product reveal video: a smartphone emerges from smoke with cinematic lighting and ambient bass."
)
@runapi.ai/seedance v1
背景

Where Seedance fits

Seedance is Bytedance's Seed team video model, supporting text-to-video and image-to-video with native audio synthesis. Through RunAPI, all Seedance variants share unified API access.

Provider
Bytedance
Modality
Video
RUNAPI を選ぶ理由

Why use Seedance through RunAPI

One API key

Use the same credentials across models and providers.

Agent-ready

Installable skills include docs and schema for tool calls.

Predictable billing

Usage-based pricing is visible before you call.

FAQ

Frequently asked questions

How do I call this model?

Use the RunAPI SDK, CLI, or REST endpoint shown on this page.

Do failed generations cost money?

失敗した生成は課金されません

Can agents use it directly?

Yes. Install the model skill and your agent gets the docs, schema, and examples.

今すぐ開始

Start building with Seedance.