Super Resolution API — Image Upscaling
Upscale images 2x or 4x while preserving detail. AI-powered super resolution via REST API.
Stable Diffusion V3 APIs Super Resolution API returns a super resolution image that is passed to the url key
--request POST 'https://stablediffusionapi.com/api/v3/super_resolution' \
Send a POST request to https://stablediffusionapi.com/api/v3/super_resolution endpoint to return the corresponding super resolution image of the image passed.
Click HERE to watch a how to video.
key : Your API Key
url : Image Url you want you want to super resolution for
scale : Scale number
webhook : webhook to call when image generation is completed
face_enhance : boolean (true/false) for face enhancement feature
Request Body and Example Response
Body Raw
{
"key": "",
"url": "https://stable-diffusion-api.s3.amazonaws.com/generations/1668922501_1-0.png",
"scale": 3,
"webhook": null,
"face_enhance": false
}