Docs / video / PixVerse V6 Extend
PixVerse V6 Extend online
Continue an existing video with PixVerse V6 — upload a clip and generate more footage that carries the motion forward.
Rp Mulai Rp323 / detik
Rp450 −28.2%
pixverse-v6/extend 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": "pixverse-v6/extend",
"input": {
"prompt": "A serene coastal landscape at sunrise",
"quality": "720p"
}
}'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": "pixverse-v6/extend",
"input": {
"prompt": "A serene coastal landscape at sunrise",
"quality": "720p"
}
}),
});
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": "pixverse-v6/extend",
"input": {
"prompt": "A serene coastal landscape at sunrise",
"quality": "720p"
}
},
)
task = res.json()Input parameters
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
seed |
integer | No | Random seed, Range: 0 - 2147483647. (min 0, max 2147483647) | 0 |
prompt |
string | Yes | A text description of the video you want to generate (max 5000 chars) | A serene coastal landscape at sunrise |
quality |
string | Yes | The output video resolution. Opsi: 360p 540p 720p 1080p |
720p |
duration |
integer | Yes | Video duration in seconds. (min 1, max 15) | 15 |
video_url |
string | Yes | Upload an image file to use as input for the API (file URL) | — |
generate_audio_switch |
boolean | No | Whether to generate audio switch | false |
2 · Poll the result
Ambil status tugas hingga selesai — poll tiap 2–5 detik.
Respons saat sukses:
{
"id": "task_9f2c…",
"status": "succeeded",
"model": "pixverse-v6/extend",
"price": {
"currency": "IDR",
"estimated": 323,
"reserved": 323,
"final": 323
},
"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.
