Colorize Photo
Add natural color to black-and-white photos
CURL
curl \
--request POST \
--url 'https://app.imggen.ai/v1/colorize-photo' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--form image=@/path/to/file.jpg \
--form removeTears=false
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.
removeTears
booleanfalse.Results
When image colorized successfully, you’ll receive a JSON response:
{
"success": true,
"message": "Image colorized successfully",
"image": "iVBORw0KGgoAAA...SUVORK5CYII="
} On This Page