All models
Videov1.0.0
Veo 3.1 Fast
Veo 3.1's draft tier — same controls at a quarter of the rate
6 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 veo-3-1-fast 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("veo-3-1-fast", {
prompt: { value: "example" },
firstFrame: { ref: "https://..." },
duration: { value: 8 },
resolution: { value: "720p" },
aspectRatio: { value: "16:9" },
audio: { value: true },
});# Install once, then sign in
npm install -g blitflow
blitflow login
blitflow node veo-3-1-fast \
-i prompt="example" \
-i firstFrame=@https://... \
-i duration=8 \
-i resolution="720p" \
-i aspectRatio="16:9" \
-i audio=true{
"name": "runs_node",
"arguments": {
"node": "veo-3-1-fast",
"inputs": {
"prompt": {
"value": "example"
},
"firstFrame": {
"ref": "https://..."
},
"duration": {
"value": 8
},
"resolution": {
"value": "720p"
},
"aspectRatio": {
"value": "16:9"
},
"audio": {
"value": true
}
}
}
}curl https://studio.blitflow.com/api/v1/runs/node \
-H "Authorization: Bearer $BLITFLOW_TOKEN" \
-H "Content-Type: application/json" \
-d '{"node":"veo-3-1-fast","inputs":{"prompt":{"value":"example"},"firstFrame":{"ref":"https://..."},"duration":{"value":8},"resolution":{"value":"720p"},"aspectRatio":{"value":"16:9"},"audio":{"value":true}}}'Schema
Inputs
| prompt* | TEXT | ||
| firstFrame | IMAGE | ||
| duration | INT | Duration (s) | 8 |
| resolution | TEXT | 720p · 1080p | 720p |
| aspectRatio | TEXT | 16:9 · 9:16 | 16:9 |
| audio | BOOLEAN | Generate audio | true |
Outputs
| video | VIDEO |