Upscale Image

Upscale image resolution up to 8K


CURL

curl \
  --request POST \
  --url 'https://app.imggen.ai/v1/upscale-image' \
  --header 'X-IMGGEN-KEY: YOUR_IMGGEN_API_KEY' \
  --header 'Content-Type: application/json' \
  --form image=@/path/to/file.jpg \

Request body

image

fileRequired

Image file, Supported formats: jpg , jpeg , png.

Results

When image upscaled successfully, you’ll receive a JSON response:

{
  "success": true,
  "message": "Image Upscaled Successfully",
  "image": "iVBORw0KGgoAAA...SUVORK5CYII="
}