Docs / video / Kling 3.0 Turbo Image to Video
Kling 3.0 Turbo Image to Video online
Bring images to life with Kling 3.0 Turbo — fluid, physics-aware animation from a single frame.
Rp Mulai Rp4.350 / video
Rp7.550 −42.4%
kling/v3-turbo-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.
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": "kling/v3-turbo-image-to-video",
"input": {
"prompt": "Based on the uploaded image, animate the elderly woman speaking softly, saying the exact words: \"Everything is going to be perfectly fine.\" Her mouth moves gently and slowly to match the phrasing. Accompany her speech with a reassuring nod, warm eye contact, and highly realistic relaxing of her facial muscles.",
"image_urls": [
"https://example.com/input.jpg"
],
"resolution": "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": "kling/v3-turbo-image-to-video",
"input": {
"prompt": "Based on the uploaded image, animate the elderly woman speaking softly, saying the exact words: \"Everything is going to be perfectly fine.\" Her mouth moves gently and slowly to match the phrasing. Accompany her speech with a reassuring nod, warm eye contact, and highly realistic relaxing of her facial muscles.",
"image_urls": [
"https://example.com/input.jpg"
],
"resolution": "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": "kling/v3-turbo-image-to-video",
"input": {
"prompt": "Based on the uploaded image, animate the elderly woman speaking softly, saying the exact words: \"Everything is going to be perfectly fine.\" Her mouth moves gently and slowly to match the phrasing. Accompany her speech with a reassuring nod, warm eye contact, and highly realistic relaxing of her facial muscles.",
"image_urls": [
"https://example.com/input.jpg"
],
"resolution": "720p"
}
},
)
task = res.json()Input parameters
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
prompt |
string | Yes | Text description for the video generation (max 2500 chars) | Based on the uploaded image, animate the elder |
duration |
integer | Yes | The duration of the generated video in seconds (min 3, max 15) | 5 |
image_urls |
array | Yes | URL of the image to be used for the video (array of file URLs) | https://example.com/input.jpg |
resolution |
string | Yes | Resolution of the generated video Opsi: 720p 1080p |
720p |
2 · Poll the result
Ambil status tugas hingga selesai — poll tiap 2–5 detik.
Respons saat sukses:
{
"id": "task_9f2c…",
"status": "succeeded",
"model": "kling/v3-turbo-image-to-video",
"price": {
"currency": "IDR",
"estimated": 4350,
"reserved": 4350,
"final": 4350
},
"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.
