Super Resolution endpoint result

Request

Send a POST request to below https://modelslab.com/api/v1/enterprise/super_resolution/make endpoint to return the corresponding super resolution image of the image passed.
curl
--request POST 'https://modelslab.com/api/v1/enterprise/super_resolution/make' \

Body

json
{    
    "key": "enterprise_api_key",   
    "init_image": "https://i.pinimg.com/564x/fc/8e/6a/fc8e6a075f341284b0f44bf1592f9f3c.jpg", 
    "face_enhance": false, 
    "scale": 3, 
    "webhook": null, 
    "track_id": null
}

Body Attributes

key
string
required
Your API Key used for request authorization.
init_image
string
required
The URL of the image that you want to upscale.
scale
integer
default:"2"
A number for scaling the image. Common values: 2, 4, or 8.
face_enhance
boolean
default:"false"
Enable or disable the face enhancement feature. Options: true/false.
webhook
string
Provide a URL to receive a POST API call once the image generation is complete.
track_id
integer
This ID is returned in the response to the webhook API call and will be used to identify the webhook request.