Image Restoration

Restore old & damaged images


CURL

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

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