Watermarks

Watermark images are preview images with watermarks.

The only requirement for downloading watermark images is the image_id, you don't need an API key in order to be able to download the image.

const downloadWatermarkImage = async (imageId) => {
    const response = await fetch(
        `https://api.autoenhance.ai/v3/images/${imageId}/watermark`,
        { method: "GET" }
    );
    const imageSource = await response.json()
    
    return imageSource
}

Specification

Last updated