Unblur Image

Removes blur and enhances the quality of photos.


CURL

curl \
  --request POST \
  --url 'https://app.imggen.ai/v1/unblur-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 deblurred successfully, you’ll receive a JSON response:

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