Docs
image
Up Scale

Upscale Image

The Upscale Image API provides a simple yet powerful interface for upscaling images.

Endpoint

POST /image/v1/up-scale

Body

  • url (string, required): The image url.
  • scale (number, optional): scaling value

Example

Request

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

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