Seedance 2.0 — high-quality text- and image-to-video generation via Volcengine Ark.
Modell:
Eingabebilder
Lade 1-9 Bilder hoch (max. 10 MB pro Bild).
Click to upload or drag and drop
Supported formats: JPG, JPEG, PNG, WEBP
Maximum file size: 10MB; Maximum files: 9
Eingabevideos
Lade bis zu 3 Referenzvideos hoch. Wenn bekannt, muss die Pixelzahl zwischen 409,600 und 2,086,876 liegen.
Click to upload or drag and drop
Supported formats: MP4, MOV, WEBM
Maximum file size: 100MB; Maximum files: 3
Pixel count: 409,600 - 2,086,876
Eingabeaudio
Lade bis zu 3 Audio-Referenzdateien hoch.
Click to upload or drag and drop
Supported formats: MP3, WAV, M4A, AAC, OGG, FLAC
Maximum file size: 50MB; Maximum files: 3
Supported durations: 5s, 10s, 15s.
Video output resolution.
Video aspect ratio.
Generate audio
Generate synchronized audio.
Web search
Let the model use web search when helpful.
USD-Schätzung $0.54-$1.08: Das größte Aufladepaket rechnet mit $1 = 2.000 Credits; das Starterpaket mit $1 = 1.000 Credits.
Verlauf
Lokal in diesem Browser gespeichert
0 läuft · 0 abgeschlossen
Abrechnungsregeln
API-Hinweise
Rufe dieses Modell über die Standard REST API auf. Nach Authentifizierung mit API Key kannst du unten einen Endpunkt auswählen und Parameter sowie Beispiele ansehen.
Authentifizierung
Jede Anfrage muss im Authorization Header ein Bearer Token enthalten. Erstelle deinen API Key in der Konsole.
Authorization: Bearer YOUR_API_KEYhttps://apiany.ai/v1/videos/generationsRequest-Parameter
| Parameter | Typ | Erforderlich | Hinweise |
|---|---|---|---|
model | String | Erforderlich | Die Modellkennung für den Aufruf; verwende die ID dieses Modells. |
prompt | String | Erforderlich | Textprompt, der beschreibt, was du generieren möchtest. |
duration | String | Optional | Supported durations: 5s, 10s, 15s. · Optionen: 5, 10, 15 · Standard: 5 |
resolution | String | Optional | Video output resolution. · Optionen: 480p, 720p, 1080p · Standard: 720p |
aspect_ratio | String | Optional | Video aspect ratio. · Optionen: 16:9, 4:3, 1:1, 3:4, 9:16, 21:9, adaptive · Standard: adaptive |
generate_audio | Boolean | Optional | Generate synchronized audio. · Standard: true |
model_params.web_search | Boolean | Optional | Let the model use web search when helpful. · Standard: false |
callback_url | String | Optional | Optionale Callback-Adresse, die nach Abschluss eines asynchronen Tasks aufgerufen wird. |
Request-Beispiel
curl "https://apiany.ai/v1/videos/generations" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "seedance-2.0",
"prompt": "A concise cinematic shot of a modern API operations dashboard, smooth camera move, clean white studio lighting",
"duration": "5",
"resolution": "720p",
"aspect_ratio": "adaptive",
"generate_audio": true,
"model_params": {
"web_search": false
}
}'Response-Beispiel
{
"task_id": "task_abc123",
"status": "pending",
"poll_url": "/v1/tasks/task_abc123",
"request_id": "req_abc123",
"credits": {
"reserved": 1000
}
}Dieser Endpunkt ist asynchron: Nach dem Request wird sofort task_id zurückgegeben. Frage den Task-Status-Endpunkt per Polling ab, bis status succeeded ist, und lies danach result. Generierte Medienlinks sind 24 Stunden gültig.