> ## Documentation Index
> Fetch the complete documentation index at: https://docs.modelslab.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Super Resolution

> This endpoint is used to return a super resolution version of an image.

<img src="https://mintlify.s3.us-west-1.amazonaws.com/mod/enterprise-api/super-resolution//images/enterprise-api/super-resolution/assets/images/Superresolution-138175764429bf837f39bb8198b1ecd3.jpg" alt="Super Resolution endpoint result" />

## Request

Send a `POST` request to below [https://modelslab.com/api/v1/enterprise/super\_resolution/make](https://modelslab.com/api/v1/enterprise/super_resolution/make) endpoint to return the corresponding super resolution image of the image passed.

```curl curl theme={null}
--request POST 'https://modelslab.com/api/v1/enterprise/super_resolution/make' \
```

### Body

```json json theme={null}
{    
    "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

<ParamField query="key" type="string" required>
  Your API Key used for request authorization.
</ParamField>

<ParamField query="init_image" type="string" format="url" required>
  The URL of the image that you want to upscale.
</ParamField>

<ParamField query="scale" type="integer" min="1" max="8" default="2">
  A number for scaling the image. Common values: 2, 4, or 8.
</ParamField>

<ParamField query="face_enhance" type="boolean" default="false">
  Enable or disable the face enhancement feature. Options: true/false.
</ParamField>

<ParamField query="webhook" type="string" format="url">
  Provide a URL to receive a POST API call once the image generation is complete.
</ParamField>

<ParamField query="track_id" type="integer">
  This ID is returned in the response to the webhook API call and will be used to identify the webhook request.
</ParamField>
