Docs / video / Seedance 2.0 Fast
Seedance 2.0 Fast online
Faster, lighter Seedance 2.0 — the same multimodal reference workflow at a lower price and quicker turnaround.
Rp Mulai Rp5.000 / video
Rp7.730 −35.3%
bytedance/seedance-2-fast model id
1 · Create a task
Kirim permintaan untuk membuat tugas generasi video. Wajib header Idempotency-Key. Saldo direservasi sebesar estimasi; task gagal tidak ditagih.
curl -X POST https://run.getcore.id/v1/tasks \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Idempotency-Key: my-task-001" \
-H "Content-Type: application/json" \
-d '{
"model": "bytedance/seedance-2-fast",
"input": {
"prompt": "Fixed camera shot, a girl is elegantly hanging clothes to dry. After one piece is hung, she takes another from the bucket and gives it a vigorous shake.",
"resolution": "720p",
"aspect_ratio": "16:9"
}
}'const res = await fetch('https://run.getcore.id/v1/tasks', {
method: 'POST',
headers: {
Authorization: 'Bearer YOUR_API_KEY',
'Idempotency-Key': 'my-task-001',
'Content-Type': 'application/json',
},
body: JSON.stringify({
"model": "bytedance/seedance-2-fast",
"input": {
"prompt": "Fixed camera shot, a girl is elegantly hanging clothes to dry. After one piece is hung, she takes another from the bucket and gives it a vigorous shake.",
"resolution": "720p",
"aspect_ratio": "16:9"
}
}),
});
const task = await res.json();import requests
res = requests.post(
"https://run.getcore.id/v1/tasks",
headers={
"Authorization": "Bearer YOUR_API_KEY",
"Idempotency-Key": "my-task-001",
},
json={
"model": "bytedance/seedance-2-fast",
"input": {
"prompt": "Fixed camera shot, a girl is elegantly hanging clothes to dry. After one piece is hung, she takes another from the bucket and gives it a vigorous shake.",
"resolution": "720p",
"aspect_ratio": "16:9"
}
},
)
task = res.json()Input parameters
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
prompt |
string | No | The text prompt or description for the video. (max 20000 chars) | Fixed camera shot, a girl is elegantly hanging |
duration |
integer | No | Video duration in seconds. (min 4, max 15) | 15 |
resolution |
string | No | The output video resolution. Opsi: 480p 720p |
720p |
web_search |
boolean | No | Use online search | false |
aspect_ratio |
string | No | The aspect ratio of the generated video. Opsi: 16:9 4:3 1:1 3:4 9:16 21:9 |
16:9 |
nsfw_checker |
boolean | No | A configurable parameter. Defaults to true in the Playground. | true |
generate_audio |
boolean | No | Whether to generate AI audio synchronized with the video. | true |
last_frame_url |
string | No | End frame image (file URL) | — |
first_frame_url |
string | No | Start frame image (file URL) | — |
reference_audio_urls |
array | No | A list of input audio URLs. Furthermore, the total length of the three audios must not exceed 15 seconds. (array of file URLs) | — |
reference_image_urls |
array | No | A list of input image URLs. (array of file URLs) | — |
reference_video_urls |
array | No | A list of input video URLs. Furthermore, the total length of the three videos must not exceed 15 seconds. (array of file URLs) | — |
2 · Poll the result
Ambil status tugas hingga selesai — poll tiap 2–5 detik.
Respons saat sukses:
{
"id": "task_9f2c…",
"status": "succeeded",
"model": "bytedance/seedance-2-fast",
"price": {
"currency": "IDR",
"estimated": 5000,
"reserved": 5000,
"final": 5000
},
"output": {
"urls": [
"https://storage.getcore.id/outputs/task_9f2c…/0.mp4"
],
"expires_at": "(7 hari setelah selesai)"
}
}
Status values
| Status | Keterangan |
|---|---|
queued | Tugas sedang diantrikan. |
processing | Sedang diproses. |
succeeded | Berhasil. |
failed | Gagal — lihat error detail, tidak ditagih. |
video/mp4, dilayani dari CDN kami dan berlaku 7 hari — salin ke penyimpananmu sendiri untuk jangka panjang.Best practices
Bila generation gagal, task berstatus failed dengan error.code ternormalisasi (mis. moderation_blocked, upstream_error) dan price.final = 0 — saldo dikembalikan otomatis. Daftar lengkap kode error ada di Error handling. Selalu kirim Idempotency-Key unik per tugas agar retry aman.
Coba tanpa kode: jalankan model ini langsung dari Playground atau lihat di API Market.
