Background Remover

Remove image background


CURL

curl \
  --request POST \
  --url 'https://app.imggen.ai/v1/remove-background' \
  --header 'Authorization: Bearer YOUR_API_KEY' \
  --form image=@/path/to/file.jpg
💡

Authenticate with Authorization: Bearer YOUR_API_KEY (legacy keys may use X-IMGGEN-KEY: YOUR_API_KEY). To process several images in one call, send image[] instead — see Batch processing.

Request body

image

fileRequired

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

Results

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

{
  "success": true,
  "message": "Background removed successfully",
  "image": "iVBORw0KGgoAAA...SUVORK5CYII="
}