Image Color Correction
Correct and sharp image colors
CURL
curl \
--request POST \
--url 'https://app.imggen.ai/v1/image-color-correction' \
--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 colors corrected successfully, you’ll receive a JSON response:
{
"success": true,
"message": "Image Enhanced Successfully",
"image": "iVBORw0KGgoAAA...SUVORK5CYII="
}
On This Page