GetRun by Getcore API Documentation

Docs / video / Kling 3.0 Turbo Text to Video

Kling 3.0 Turbo Text to Video online

Kling's fast 3.0 Turbo engine for text-to-video — expressive motion and strong scene composition at 720p or 1080p.

Rp Mulai Rp4.350 / video Rp7.550 −42.4% kling/v3-turbo-text-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": "kling/v3-turbo-text-to-video",
    "input": {
      "prompt": "A cinematic, medium shot of a happy family having a warm dinner around a wooden table in a well-lit dining room. They are laughing and passing a bowl of salad. Soft indoor lighting, photorealistic details, natural human movements. ",
      "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": "kling/v3-turbo-text-to-video",
    "input": {
      "prompt": "A cinematic, medium shot of a happy family having a warm dinner around a wooden table in a well-lit dining room. They are laughing and passing a bowl of salad. Soft indoor lighting, photorealistic details, natural human movements. ",
      "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": "kling/v3-turbo-text-to-video",
      "input": {
        "prompt": "A cinematic, medium shot of a happy family having a warm dinner around a wooden table in a well-lit dining room. They are laughing and passing a bowl of salad. Soft indoor lighting, photorealistic details, natural human movements. ",
        "resolution": "720p",
        "aspect_ratio": "16:9"
      }
    },
)
task = res.json()

Input parameters

NameTypeRequiredDescriptionExample
prompt string Yes The text description of the video you want to generate (max 2500 chars) A cinematic, medium shot of a happy family hav
duration integer Yes The duration of the generated video in seconds (min 3, max 15) 5
resolution string Yes Resolution of the generated video
Opsi: 720p 1080p
720p
aspect_ratio string Yes The aspect ratio of the generated video frame
Opsi: 1:1 9:16 16:9
16:9

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": "kling/v3-turbo-text-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

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
Kling 3.0 Turbo Text to Video
Mulai Rp4.350 / video
  • Harga jelas, pembayaran mudah.
  • Transparan, tanpa biaya tersembunyi.
  • Hemat 42% dibanding harga pembanding.
Try in Playground ↗

Eksperimen model ini langsung di Playground untuk hasil instan.

Model details
Model IDkling/v3-turbo-text-to-video
Modalityvideo
Output typevideo/mp4
API versionv1
Need help?

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