Kling 3.0 Image to Video (Pro) generates videos from a single image URL with optional sound and customizable duration up to 15 seconds. It supports multi-shot sequences with multiple prompts and fine-tuning via CFG scale for creative video outputs.
import { config, higgsfield } from "@higgsfield/client/v2";config({credentials: process.env.HF_CREDENTIALS,});const result = await higgsfield.subscribe("kling-video/v3.0/pro/image-to-video",{input: {"sound": "on","duration": 5,"cfg_scale": 0.5,"image_url": "https://example.com/input.jpg","multi_shots": false},withPolling: true,},);console.log(result);