Developer Preview
Seedance 2.0 API & Automation
Integrate professional AI video generation into your applications. Learn about the current state of the Seedance 2.0 API and automation alternatives.
API Status: Private Beta
The official Seedance 2.0 API is currently in private beta. Public access is expected to roll out in Q4 2026.Join the waitlist to get early access.
Browser Automation (Current)
The most reliable way to automate Seedance 2.0 today is via headless browser automation.
While waiting for the official REST API, developers are building workflows using tools like Puppeteer or Playwright to interact with the web interface programmatically.
await page.type('.prompt-input', ' Cinematic shot of...');
await page.click('#generate-btn');
Read Automation Guide (Coming Soon)await page.click('#generate-btn');
Official REST API (Waitlist)
Native integration with high throughput and webhooks support.
- Standard RESTful endpoints
- Webhook notifications for job completion
- Granular credit usage tracking
Join 2,000+ developers on the waitlist.
Structured Prompt Schema
Prepare for the API by structuring your prompt data today. We recommend using this JSON schema to organize your prompt templates.
json
{
"prompt_version": "2.0",
"parameters": {
"subject": "Cyberpunk Street Samurai",
"environment": "Neo-Tokyo raining night, neon lights",
"camera_movement": "dolly_in",
"aspect_ratio": "16:9",
"duration": 5
},
"advanced": {
"seed": 123456,
"motion_strength": 0.8
}
}