Docs
image
Enhance Image

Enhance Image

The Enhance Image API provides a simple yet powerful interface for enhancing images.

Endpoint

POST /image/v1/enhance

Body

  • url (string, required): The image url.

Example

Request

POST /image/v1/enhance
Content-Type: application/json
x-access-key: YOUR_ACCESS_KEY
{
    "url": "<Input text>",
 
}

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>"
}