Watermark Remover

Remove image watermark


CURL

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

{
  "success": true,
  "message": "Watermark Removed Successfully",
  "images": ["iVBORw0KGgoAAA...SUVORK5CYII=", "UklGRnz/AQ...aIUJ7gAAA=="]
  "failedImages": []
}