post https://api.topazlabs.com/image/v1/denoise
A synchronous endpoint for denoising your image.
Returns the denoised image as a binary with one of the following MIME types depending on the chosen output_format
(defaulting to JPEG):
image/jpeg
for JPEG output.image/png
for PNG output.image/tiff
for TIFF output.
Additionally, returns process_id
and eta
as response headers X-Process-Id
and X-ETA
respectively to use as an efficient way to track the progress of the image denoising job:
- Use the
Status
endpoints to check the status of this job using the returnedprocess_id
. - Use the
Download
endpoint to download the processed image once it is ready. - Use the
Cancel
endpoint to cancel the job while it is in progress.
The
eta
represents when the job is expected to finish in Unix time.
This endpoint can return a maximum of 96 megapixels; please see the Denoise (asynchronous)
endpoint if you wish to work with larger dimensions.