GetRun by Getcore API Documentation

Docs / video / PixVerse V6 Image to Video

PixVerse V6 Image to Video online

Animate a still image into video with PixVerse V6 — control length, resolution, and optional generated audio.

Rp Mulai Rp323 / detik Rp450 −28.2% pixverse-v6/image-to-video 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.

POSThttps://run.getcore.id/v1/tasks
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/image-to-video",
    "input": {
      "prompt": "A male fox demon with ears and a tail. He smiles at a girl. His tail moves slowly. Gentle eyes. Japanese dialogue: Male (Gentle) ‘お疲れ様、夜の古街は危ないですよ.’ Female (Surprised) ‘あ、あなたは…妖ですか?’",
      "quality": "720p",
      "image_urls": [
        "https://example.com/input.jpg"
      ]
    }
  }'
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/image-to-video",
    "input": {
      "prompt": "A male fox demon with ears and a tail. He smiles at a girl. His tail moves slowly. Gentle eyes. Japanese dialogue: Male (Gentle) ‘お疲れ様、夜の古街は危ないですよ.’ Female (Surprised) ‘あ、あなたは…妖ですか?’",
      "quality": "720p",
      "image_urls": [
        "https://example.com/input.jpg"
      ]
    }
  }),
});
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/image-to-video",
      "input": {
        "prompt": "A male fox demon with ears and a tail. He smiles at a girl. His tail moves slowly. Gentle eyes. Japanese dialogue: Male (Gentle) ‘お疲れ様、夜の古街は危ないですよ.’ Female (Surprised) ‘あ、あなたは…妖ですか?’",
        "quality": "720p",
        "image_urls": [
          "https://example.com/input.jpg"
        ]
      }
    },
)
task = res.json()

Input parameters

NameTypeRequiredDescriptionExample
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 male fox demon with ears and a tail. He smil
quality string Yes The output video resolution.
Opsi: 360p 540p 720p 1080p
720p
duration integer No Video duration in seconds. (min 1, max 15) 15
image_urls array Yes Upload an image file to use as input for the API (array of file URLs) https://example.com/input.jpg
template_id integer No Template ID. For detailed information about this template, please refer to the documentation.
generate_audio_switch boolean No Whether to generate audio switch false
generate_multi_clip_switch boolean No Whether to enable the PixVerse V6 multi-clip switch false

2 · Poll the result

Ambil status tugas hingga selesai — poll tiap 2–5 detik.

GEThttps://run.getcore.id/v1/tasks/{task_id}

Respons saat sukses:

{
  "id": "task_9f2c…",
  "status": "succeeded",
  "model": "pixverse-v6/image-to-video",
  "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

StatusKeterangan
queuedTugas sedang diantrikan.
processingSedang diproses.
succeededBerhasil.
failedGagal — lihat error detail, tidak ditagih.
Output bertipe 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.

On this page
1 · Create a task Input parameters 2 · Poll the result Status values Best practices
Pricing summary
PixVerse V6 Image to Video
Mulai Rp323 / detik
  • Harga jelas, pembayaran mudah.
  • Transparan, tanpa biaya tersembunyi.
  • Hemat 28% dibanding harga pembanding.
Try in Playground ↗

Eksperimen model ini langsung di Playground untuk hasil instan.

Model details
Model IDpixverse-v6/image-to-video
Modalityvideo
Output typevideo/mp4
API versionv1
Need help?

Lihat daftar error umum di Error handling atau hubungi support@getcore.id.