All models
Imagev1.0.0
Real-ESRGAN (Upscale)
Upscale and restore images 2–4×. Fast and cheap.
3 inputsIMAGE


2× upscale + restore
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 real-esrgan 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("real-esrgan", {
image: { ref: "https://..." },
scale: { value: "4" },
faceEnhance: { value: false },
});# Install once, then sign in
npm install -g blitflow
blitflow login
blitflow node real-esrgan \
-i image=@https://... \
-i scale="4" \
-i faceEnhance=false{
"name": "runs_node",
"arguments": {
"node": "real-esrgan",
"inputs": {
"image": {
"ref": "https://..."
},
"scale": {
"value": "4"
},
"faceEnhance": {
"value": false
}
}
}
}curl https://studio.blitflow.com/api/v1/runs/node \
-H "Authorization: Bearer $BLITFLOW_TOKEN" \
-H "Content-Type: application/json" \
-d '{"node":"real-esrgan","inputs":{"image":{"ref":"https://..."},"scale":{"value":"4"},"faceEnhance":{"value":false}}}'Schema
Inputs
| image* | IMAGE | ||
| scale | TEXT | Scale (2× or 4×) 2 · 4 | 4 |
| faceEnhance | BOOLEAN | false |
Outputs
| image | IMAGE |