
Seedance v1 Pro t2v 480p 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.
Entrada
Salida
InactivoCada ejecución costará $0.022. Con $10 puedes ejecutar aproximadamente 454 veces.
Puedes continuar con:
Ejemplo de código
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-480p",
"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()Instalar
Instala el paquete necesario para tu lenguaje de programación.
pip install requestsAutenticación
Todas las solicitudes de API requieren autenticación mediante una clave de API. Puedes obtener tu clave de API desde el panel de Atlas Cloud.
export ATLASCLOUD_API_KEY="your-api-key-here"Encabezados HTTP
import os
API_KEY = os.environ.get("ATLASCLOUD_API_KEY")
headers = {
"Content-Type": "application/json",
"Authorization": f"Bearer {API_KEY}"
}Nunca expongas tu clave de API en código del lado del cliente ni en repositorios públicos. Usa variables de entorno o un proxy de backend en su lugar.
Enviar una solicitud
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())Enviar una solicitud
Envía una solicitud de generación asíncrona. La API devuelve un ID de predicción que puedes usar para verificar el estado y obtener el resultado.
/api/v1/model/generateVideoCuerpo de la solicitud
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-480p",
"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']}")Respuesta
{
"id": "pred_abc123",
"status": "processing",
"model": "model-name",
"created_at": "2025-01-01T00:00:00Z"
}Verificar estado
Consulta el endpoint de predicción para verificar el estado actual de tu solicitud.
/api/v1/model/prediction/{prediction_id}Ejemplo de polling
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)Valores de estado
processingLa solicitud aún se está procesando.completedLa generación está completa. Las salidas están disponibles.succeededLa generación fue exitosa. Las salidas están disponibles.failedLa generación falló. Verifica el campo de error.Respuesta completada
{
"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"
}
}Subir archivos
Sube archivos al almacenamiento de Atlas Cloud y obtén una URL que puedes usar en tus solicitudes de API. Usa multipart/form-data para subir.
/api/v1/model/uploadMediaEjemplo de carga
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}")Respuesta
{
"data": {
"download_url": "https://storage.atlascloud.ai/uploads/abc123/image.png",
"file_name": "image.png",
"content_type": "image/png",
"size": 1024000
}
}Schema de entrada
Los siguientes parámetros se aceptan en el cuerpo de la solicitud.
No hay parámetros disponibles.
Ejemplo de cuerpo de solicitud
{
"model": "bytedance/seedance-v1-pro-t2v-480p"
}Schema de salida
La API devuelve una respuesta de predicción con las URL de salida generadas.
Ejemplo de respuesta
{
"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 integra más de 300 modelos de IA directamente en tu asistente de codificación con IA. Un solo comando para instalar y luego usa lenguaje natural para generar imágenes, videos y chatear con LLM.
Clientes compatibles
Instalar
npx skills add AtlasCloudAI/atlas-cloud-skillsConfigurar clave de API
Obtén tu clave de API desde el panel de Atlas Cloud y configúrala como variable de entorno.
export ATLASCLOUD_API_KEY="your-api-key-here"Funcionalidades
Una vez instalado, puedes usar lenguaje natural en tu asistente de IA para acceder a todos los modelos de Atlas Cloud.
MCP Server
Atlas Cloud MCP Server conecta tu IDE con más de 300 modelos de IA a través del Model Context Protocol. Funciona con cualquier cliente compatible con MCP.
Clientes compatibles
Instalar
npx -y atlascloud-mcpConfiguración
Agrega la siguiente configuración al archivo de configuración de MCP de tu IDE.
{
"mcpServers": {
"atlascloud": {
"command": "npx",
"args": [
"-y",
"atlascloud-mcp"
],
"env": {
"ATLASCLOUD_API_KEY": "your-api-key-here"
}
}
}
}Herramientas disponibles
API Schema
Schema no disponiblePor favor inicia sesión para ver el historial de solicitudes
Necesitas iniciar sesión para acceder al historial de solicitudes del modelo.
Iniciar SesiónByteDance Seedance Pro T2V 480p
ByteDance Seedance Pro T2V 480p 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 480p 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 480p 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.






