All models
Imagev1.0.0
Flux Depth
Regenerate an image while preserving depth/perspective structure from the reference.
5 inputsIMAGE


Prompt: “the same scene reimagined as a neon cyberpunk street at night”
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 flux-depth-dev 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("flux-depth-dev", {
image: { ref: "https://..." },
prompt: { value: "example" },
aspectRatio: { value: "match_input_image" },
steps: { value: 28 },
seed: { value: 1 },
});# Install once, then sign in
npm install -g blitflow
blitflow login
blitflow node flux-depth-dev \
-i image=@https://... \
-i prompt="example" \
-i aspectRatio="match_input_image" \
-i steps=28 \
-i seed=1{
"name": "runs_node",
"arguments": {
"node": "flux-depth-dev",
"inputs": {
"image": {
"ref": "https://..."
},
"prompt": {
"value": "example"
},
"aspectRatio": {
"value": "match_input_image"
},
"steps": {
"value": 28
},
"seed": {
"value": 1
}
}
}
}curl https://studio.blitflow.com/api/v1/runs/node \
-H "Authorization: Bearer $BLITFLOW_TOKEN" \
-H "Content-Type: application/json" \
-d '{"node":"flux-depth-dev","inputs":{"image":{"ref":"https://..."},"prompt":{"value":"example"},"aspectRatio":{"value":"match_input_image"},"steps":{"value":28},"seed":{"value":1}}}'Schema
Inputs
| image* | IMAGE | Reference image | |
| prompt* | TEXT | ||
| aspectRatio | TEXT | match_input_image · 1:1 · 16:9 · 9:16 · 4:3 · 3:4 · 3:2 · 2:3 | match_input_image |
| steps | INT | 28 | |
| seed | INT |
Outputs
| image | IMAGE |