Recover 3
Model Overview
Samples


Model Endpoint
Parameters
API Request Samples
Last updated


Last updated
curl -L \
--request POST \
--url 'https://api.topazlabs.com/image/v1/enhance-gen/async' \
--header 'X-API-Key: YOUR_API_KEY' \
--header 'Content-Type: multipart/form-data' \
--form 'image=@/path/to/image' \
--form 'model=Recover 3' \
--form 'enhancement_strength=5.0' \
--form 'output_width=4096' \
--form 'output_height=4096'import requests
url = "https://api.topazlabs.com/image/v1/enhance-gen/async"
headers = {
"X-API-Key": "YOUR_API_KEY"
}
with open("/path/to/image", "rb") as image_file:
files = {
"image": image_file
}
data = {
"model": "Recover 3",
"enhancement_strength": "5.0",
"output_width": "4096",
"output_height": "4096"
}
response = requests.post(url, headers=headers, files=files, data=data)
print(response.json())