All models
Media utilitiesv1.0.0
Image Input
Ingest an uploaded or inline image (data: URI, base64, or URL) and host it as a reusable image artifact
1 inputIMAGE


Passthrough — re-hosts an image as a first-party asset
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 image-input 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("image-input", {
image: { ref: "https://..." },
});# Install once, then sign in
npm install -g blitflow
blitflow login
blitflow node image-input \
-i image=@https://...{
"name": "runs_node",
"arguments": {
"node": "image-input",
"inputs": {
"image": {
"ref": "https://..."
}
}
}
}curl https://studio.blitflow.com/api/v1/runs/node \
-H "Authorization: Bearer $BLITFLOW_TOKEN" \
-H "Content-Type: application/json" \
-d '{"node":"image-input","inputs":{"image":{"ref":"https://..."}}}'Schema
Inputs
| image* | IMAGE |
Outputs
| image | IMAGE |