Background Remover
Remove image background
CURL
curl \
--request POST \
--url 'https://app.imggen.ai/v1/remove-background' \
--header 'X-IMGGEN-KEY: YOUR_IMGGEN_API_KEY' \
--header 'Content-Type: application/json' \
--form image=@/path/to/file.jpg \
Request body
image
fileRequiredImage file, Supported formats: jpg , jpeg , png.
Results
When image background removed successfully, you’ll receive a JSON response:
{
"success": true,
"message": "Background Removed Successfully",
"image": "iVBORw0KGgoAAA...SUVORK5CYII="
}
On This Page