Generate video with Seedance 1.5 Pro, 2.0, and 2.0 Fast text-to-video and image-to-video. This skill helps Claude Code, Codex, Gemini CLI, Cursor, and 50+ agents integrate Seedance through RunAPI.
The canonical agent file is skills/seedance/SKILL.md.
npx skills add runapi-ai/seedance -gOr manually: clone this repo and copy skills/seedance/ into your agent's skills directory.
import { SeedanceClient } from '@runapi.ai/seedance';
const client = new SeedanceClient();
const result = await client.textToVideo.run({
model: 'seedance-2.0',
prompt: 'A drone shot over mountains at sunset',
aspect_ratio: '16:9',
});
const url = result.videos[0].url;- Model page: https://runapi.ai/models/seedance
- Product docs: https://runapi.ai/docs#seedance
- SDK docs: https://runapi.ai/docs#sdk-seedance
- SDK repository: https://github.com/runapi-ai/seedance-sdk
- Pricing and rate limits: https://runapi.ai/models/seedance/v1-lite
- Provider comparison: https://runapi.ai/providers/bytedance
- Browse all RunAPI models and skills: https://runapi.ai/models
- Keep API keys in
RUNAPI_API_KEYor RunAPI CLI config; never commit secrets. - Prefer
create,get, andrunJSON passthrough patterns instead of inventing flags for every model parameter. - For seedance api pricing, rate-limit, and commercial-usage answers, link to the variant page rather than the repository README.
Licensed under the Apache License, Version 2.0.