All models
Videov1.0.0
Kling 3.0 Image-to-Video
Animate an image with Kling 3.0, in std and pro tiers
5 inputsVIDEO
Demo coming soon
Demo coming soon
Output
Fill in the inputs and run the node to see its output here.
Run it from your code
The same node, called by id from any surface. Every tab pins kling-v3-i2v and passes the ports below. Full guide.
import { BlitClient } from "@blitflow/sdk";
const { runNode } = new BlitClient({ apiKey: process.env.BLITFLOW_TOKEN });
const { outputs } = await runNode("kling-v3-i2v", {
prompt: { value: "example" },
image: { ref: "https://..." },
duration: { value: 5 },
mode: { value: "std" },
audio: { value: false },
});# Install once, then sign in
npm install -g blitflow
blitflow login
blitflow node kling-v3-i2v \
-i prompt="example" \
-i image=@https://... \
-i duration=5 \
-i mode="std" \
-i audio=false{
"name": "runs_node",
"arguments": {
"node": "kling-v3-i2v",
"inputs": {
"prompt": {
"value": "example"
},
"image": {
"ref": "https://..."
},
"duration": {
"value": 5
},
"mode": {
"value": "std"
},
"audio": {
"value": false
}
}
}
}curl https://studio.blitflow.com/api/v1/runs/node \
-H "Authorization: Bearer $BLITFLOW_TOKEN" \
-H "Content-Type: application/json" \
-d '{"node":"kling-v3-i2v","inputs":{"prompt":{"value":"example"},"image":{"ref":"https://..."},"duration":{"value":5},"mode":{"value":"std"},"audio":{"value":false}}}'Schema
Inputs
| prompt* | TEXT | ||
| image* | IMAGE | ||
| duration | INT | Duration (s) | 5 |
| mode | TEXT | Quality std · pro | std |
| audio | BOOLEAN | Generate audio | false |
Outputs
| video | VIDEO |