Reimagine Image
The Reimagine Image API provides a simple yet powerful interface for Reimagining images.
Endpoint
POST /image/v1/re-imagine
Body
form data
image
(file
, required): The image fileOnly accepts PNG, JPEG or WebP file with a maximum width and height of 1024 pixels.
Example
Request
POST /image/v1/re-imagine
x-access-key: YOUR_ACCESS_KEY
--form:"image": "<image file>",
Response
Success
HTTP/1.1 200 OK
{
"data": <base64 image>,
"success": true,
"message": "<process success message>"
}
Error
HTTP/1.1 400 Bad Request
Content-Type: application/json
{
"success": false,
"message": "<An error message containg the details>"
}