# Image Enhancer > Enhance photo quality and resolution instantly with the Image Enhancer — improve clarity and boost details for high-quality, sharp images. ## Overview - **Model ID**: `image-enhancer` - **Category**: image - **Provider**: modelslab - **Status**: active - **Screenshot**: `https://assets.modelslab.com/generations/9c59206d-666b-4bf8-9ce6-b03ab4a343f4.webp` ## API Information This model can be used via our HTTP API. See the API documentation and usage examples below. ### Endpoint - **URL**: `https://modelslab.com/api/v6/image_editing/super_resolution` - **Method**: POST ### Parameters - **`init_image`** (required): Please upload image for enhancing quality - Type: file (image/jpeg,image/png) - **`scale`** (required): - Type: number (range: 1-4) ## Usage Examples ### cURL ```bash curl --request POST \ --url https://modelslab.com/api/v6/image_editing/super_resolution \ --header "Content-Type: application/json" \ --data '{ "key": "YOUR_API_KEY", "model_id": "image-enhancer", "init_image": "https://assets.modelslab.com/generations/2a80c145-fd93-42c3-b86b-88d0dc17ad05", "scale": "3" }' ``` ### Python ```python import requests response = requests.post( "https://modelslab.com/api/v6/image_editing/super_resolution", headers={ "Content-Type": "application/json" }, json={ "key": "YOUR_API_KEY", "model_id": "image-enhancer", "init_image": "https://assets.modelslab.com/generations/2a80c145-fd93-42c3-b86b-88d0dc17ad05", "scale": "3" } ) print(response.json()) ``` ### JavaScript ```javascript fetch("https://modelslab.com/api/v6/image_editing/super_resolution", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "key": "YOUR_API_KEY", "model_id": "image-enhancer", "init_image": "https://assets.modelslab.com/generations/2a80c145-fd93-42c3-b86b-88d0dc17ad05", "scale": "3" }) }) .then(response => response.json()) .then(data => console.log(data)); ``` ## Links - [Model Playground](https://modelslab.com/models/image-enhancer/image-enhancer) - [API Documentation](https://docs.modelslab.com) - [ModelsLab Platform](https://modelslab.com)