Text Remover
Remove text from image
CURL
curl \
--request POST \
--url 'https://app.imggen.ai/v1/remove-text' \
--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
fileRequiredImage file, Supported formats: jpg , jpeg , png , webp.
Results
When text removed successfully, you’ll receive a JSON response:
{
"success": true,
"message": "Text removed successfully",
"image": "iVBORw0KGgoAAA...SUVORK5CYII="
}
If no text is detected in the image, the request returns 422 and no credits are charged.
On This Page