
Seedance v1 Pro t2v 720p API by ByteDance
A full-fidelity text-to-video model built for cinematic results. Generates multi-shot, 1080p videos with smooth motion, strong prompt adherence, and scene continuity.
Invoer
Uitvoer
InactiefElke uitvoering kost $0.047. Voor $10 kunt u ongeveer 212 keer uitvoeren.
U kunt doorgaan met:
Codevoorbeeld
import requests
import time
# Step 1: Start video generation
generate_url = "https://api.atlascloud.ai/api/v1/model/generateVideo"
headers = {
"Content-Type": "application/json",
"Authorization": "Bearer $ATLASCLOUD_API_KEY"
}
data = {
"model": "bytedance/seedance-v1-pro-t2v-720p",
"prompt": "A beautiful sunset over the ocean with gentle waves",
"width": 512,
"height": 512,
"duration": 3,
"fps": 24,
}
generate_response = requests.post(generate_url, headers=headers, json=data)
generate_result = generate_response.json()
prediction_id = generate_result["data"]["id"]
# Step 2: Poll for result
poll_url = f"https://api.atlascloud.ai/api/v1/model/prediction/{prediction_id}"
def check_status():
while True:
response = requests.get(poll_url, headers={"Authorization": "Bearer $ATLASCLOUD_API_KEY"})
result = response.json()
if result["data"]["status"] in ["completed", "succeeded"]:
print("Generated video:", result["data"]["outputs"][0])
return result["data"]["outputs"][0]
elif result["data"]["status"] == "failed":
raise Exception(result["data"]["error"] or "Generation failed")
else:
# Still processing, wait 2 seconds
time.sleep(2)
video_url = check_status()Installeren
Installeer het vereiste pakket voor uw programmeertaal.
pip install requestsAuthenticatie
Alle API-verzoeken vereisen authenticatie via een API-sleutel. U kunt uw API-sleutel ophalen via het Atlas Cloud dashboard.
export ATLASCLOUD_API_KEY="your-api-key-here"HTTP-headers
import os
API_KEY = os.environ.get("ATLASCLOUD_API_KEY")
headers = {
"Content-Type": "application/json",
"Authorization": f"Bearer {API_KEY}"
}Stel uw API-sleutel nooit bloot in client-side code of openbare repositories. Gebruik in plaats daarvan omgevingsvariabelen of een backend-proxy.
Een verzoek indienen
import requests
url = "https://api.atlascloud.ai/api/v1/model/generateVideo"
headers = {
"Content-Type": "application/json",
"Authorization": "Bearer $ATLASCLOUD_API_KEY"
}
data = {
"model": "your-model",
"prompt": "A beautiful landscape"
}
response = requests.post(url, headers=headers, json=data)
print(response.json())Een verzoek indienen
Dien een asynchroon generatieverzoek in. De API retourneert een voorspellings-ID waarmee u de status kunt controleren en het resultaat kunt ophalen.
/api/v1/model/generateVideoVerzoekinhoud
import requests
url = "https://api.atlascloud.ai/api/v1/model/generateVideo"
headers = {
"Content-Type": "application/json",
"Authorization": "Bearer $ATLASCLOUD_API_KEY"
}
data = {
"model": "bytedance/seedance-v1-pro-t2v-720p",
"input": {
"prompt": "A beautiful sunset over the ocean with gentle waves"
}
}
response = requests.post(url, headers=headers, json=data)
result = response.json()
print(f"Prediction ID: {result['id']}")
print(f"Status: {result['status']}")Antwoord
{
"id": "pred_abc123",
"status": "processing",
"model": "model-name",
"created_at": "2025-01-01T00:00:00Z"
}Status controleren
Bevraag het voorspellings-eindpunt om de huidige status van uw verzoek te controleren.
/api/v1/model/prediction/{prediction_id}Polling-voorbeeld
import requests
import time
prediction_id = "pred_abc123"
url = f"https://api.atlascloud.ai/api/v1/model/prediction/{prediction_id}"
headers = { "Authorization": "Bearer $ATLASCLOUD_API_KEY" }
while True:
response = requests.get(url, headers=headers)
result = response.json()
status = result["data"]["status"]
print(f"Status: {status}")
if status in ["completed", "succeeded"]:
output_url = result["data"]["outputs"][0]
print(f"Output URL: {output_url}")
break
elif status == "failed":
print(f"Error: {result['data'].get('error', 'Unknown')}")
break
time.sleep(3)Statuswaarden
processingHet verzoek wordt nog verwerkt.completedDe generatie is voltooid. Resultaten zijn beschikbaar.succeededDe generatie is geslaagd. Resultaten zijn beschikbaar.failedDe generatie is mislukt. Controleer het foutveld.Voltooid antwoord
{
"data": {
"id": "pred_abc123",
"status": "completed",
"outputs": [
"https://storage.atlascloud.ai/outputs/result.mp4"
],
"metrics": {
"predict_time": 45.2
},
"created_at": "2025-01-01T00:00:00Z",
"completed_at": "2025-01-01T00:00:10Z"
}
}Bestanden uploaden
Upload bestanden naar Atlas Cloud opslag en ontvang een URL die u kunt gebruiken in uw API-verzoeken. Gebruik multipart/form-data om te uploaden.
/api/v1/model/uploadMediaUpload-voorbeeld
import requests
url = "https://api.atlascloud.ai/api/v1/model/uploadMedia"
headers = { "Authorization": "Bearer $ATLASCLOUD_API_KEY" }
with open("image.png", "rb") as f:
files = {"file": ("image.png", f, "image/png")}
response = requests.post(url, headers=headers, files=files)
result = response.json()
download_url = result["data"]["download_url"]
print(f"File URL: {download_url}")Antwoord
{
"data": {
"download_url": "https://storage.atlascloud.ai/uploads/abc123/image.png",
"file_name": "image.png",
"content_type": "image/png",
"size": 1024000
}
}Invoer-Schema
De volgende parameters worden geaccepteerd in de verzoekinhoud.
Geen parameters beschikbaar.
Voorbeeld verzoekinhoud
{
"model": "bytedance/seedance-v1-pro-t2v-720p"
}Uitvoer-Schema
De API retourneert een voorspellingsantwoord met de gegenereerde uitvoer-URL's.
Voorbeeldantwoord
{
"id": "pred_abc123",
"status": "completed",
"model": "model-name",
"outputs": [
"https://storage.atlascloud.ai/outputs/result.mp4"
],
"metrics": {
"predict_time": 45.2
},
"created_at": "2025-01-01T00:00:00Z",
"completed_at": "2025-01-01T00:00:10Z"
}Atlas Cloud Skills
Atlas Cloud Skills integreert meer dan 300 AI-modellen rechtstreeks in uw AI-codeerassistent. Eén commando om te installeren, gebruik daarna natuurlijke taal om afbeeldingen, video's te genereren en te chatten met LLMs.
Ondersteunde clients
Installeren
npx skills add AtlasCloudAI/atlas-cloud-skillsAPI-sleutel instellen
Haal uw API-sleutel op via het Atlas Cloud dashboard en stel deze in als omgevingsvariabele.
export ATLASCLOUD_API_KEY="your-api-key-here"Mogelijkheden
Eenmaal geïnstalleerd kunt u natuurlijke taal gebruiken in uw AI-assistent om toegang te krijgen tot alle Atlas Cloud modellen.
MCP-server
De Atlas Cloud MCP-server verbindt uw IDE met meer dan 300 AI-modellen via het Model Context Protocol. Werkt met elke MCP-compatibele client.
Ondersteunde clients
Installeren
npx -y atlascloud-mcpConfiguratie
Voeg de volgende configuratie toe aan het MCP-instellingenbestand van uw IDE.
{
"mcpServers": {
"atlascloud": {
"command": "npx",
"args": [
"-y",
"atlascloud-mcp"
],
"env": {
"ATLASCLOUD_API_KEY": "your-api-key-here"
}
}
}
}Beschikbare tools
API Schema
Schema niet beschikbaarInloggen om aanvraaggeschiedenis te bekijken
U moet ingelogd zijn om toegang te krijgen tot uw modelaanvraaggeschiedenis.
InloggenSeedance-V1-Pro-T2V-720p
ByteDance Seedance Pro T2V 720p is a revolutionary AI text-to-video generation model developed by ByteDance, now exclusively available on WaveSpeedAI as a global premiere launch. This cutting-edge model transforms text prompts into dynamic 5-second videos at 720p resolution with lightning-fast processing speed, offering high-quality visual outputs with enhanced motion and semantic understanding. Part of the Dreamina model family, this SOTA-level model delivers unprecedented performance in text-to-video synthesis.
Key Features
- Ultra-Fast Video Generation: Lightning-speed processing creates 5-second videos at 720p resolution with vivid details and smooth motion in seconds, not minutes.
- SOTA Motion Rendering: State-of-the-art dynamic rendering techniques create natural and realistic movements that bring text descriptions to life.
- Advanced Semantic Understanding: Industry-leading AI excels in interpreting complex text prompts to generate coherent and dynamic scenes with professional quality.
- Realistic Physical Simulation: SOTA physics engine simulates realistic physical properties and movements for lifelike video generation.
- Blazing-Fast Processing: Optimized for maximum speed efficiency, allowing instant creation of high-quality videos for real-time workflows.
- Flexible Parameter Control: Customizable settings offer duration and style adjustments for complete creative control.
- Professional Quality Output: SOTA text-to-video technology ensures broadcast-ready results with smooth temporal consistency.
- Instant Creative Enhancement: Transform text descriptions into engaging, dynamic content perfect for social media marketing in seconds.
Global Premiere
- Exclusive Launch: WaveSpeedAI is the first platform globally to offer ByteDance's latest T2V technology from the Dreamina series.
- Cutting-Edge Access: Be among the first worldwide to experience SOTA text-to-video generation capabilities.
- Premium Integration: Seamless API access to ByteDance's most advanced video synthesis technology.
- Pioneer Advantage: Early access to breakthrough AI technology before wider market availability.
Technical Excellence & Speed Optimization
- SOTA Architecture: Built on breakthrough research delivering state-of-the-art text-to-video generation performance.
- Optimized Processing: Native ByteDance technology delivers superior generation speed compared to standard T2V solutions.
- Real-Time Processing: Ultra-fast video synthesis enables immediate creative workflows and instant content creation.
- High-Performance Computing: Enterprise-grade infrastructure supports rapid, high-volume video generation at scale.
Perfect for Fast-Paced Creative Work
- Content Creators: Instantly transform text ideas into engaging video content for social platforms with lightning-fast speed.
- Marketing Professionals: Create dynamic promotional videos from text descriptions in seconds, not hours.
- Social Media Managers: Convert text concepts into shareable, dynamic content that captures attention with lightning-fast turnaround.
- E-commerce Teams: Generate product demonstration videos from text descriptions using SOTA T2V technology.
- Digital Agencies: Deliver client projects faster with instant video generation capabilities from the Dreamina model family.
Performance & Speed Advantages
- Instant Results: Generate professional videos in seconds with SOTA processing speed.
- Real-Time Workflow: Advanced AI enables immediate creative iteration and rapid content production.
- Scalable Speed: Handle multiple text-to-video conversions simultaneously without performance degradation.
- Optimized Efficiency: Advanced algorithms maximize speed while maintaining SOTA quality standards.
Limitations
- Creative Focus: Designed primarily for creative video synthesis; not intended for generating factually accurate content.
- Inherent Biases: Outputs may reflect biases present in the training data, typical of current SOTA models.
- Input Sensitivity: The quality and consistency of generated videos depend significantly on the quality of the input text prompt; subtle variations may lead to output variability.
- Resolution Limitation: This model is optimized for 480p video generation and does not support higher resolutions.
- Speed vs Quality Trade-off: While optimized for speed, extremely complex text descriptions may require additional processing time.
Out-of-Scope Use
The model and its derivatives may not be used in any way that violates applicable national, federal, state, local, or international law or regulation, including but not limited to:
- Exploiting, harming, or attempting to exploit or harm minors, including solicitation, creation, acquisition, or dissemination of child exploitative content.
- Generating or disseminating verifiably false information with the intent to harm others.
- Creating or distributing personal identifiable information that could be used to harm an individual.
- Harassing, abusing, threatening, stalking, or bullying individuals or groups.
- Producing non-consensual nudity or illegal pornographic content.
- Making fully automated decisions that adversely affect an individual's legal rights or create binding obligations.
- Facilitating large-scale disinformation campaigns.






