Retrieveing

This API endpoint allows you to retrieve a image. To retrieve an image, you must provide the image_id.

const imageId = "ID_OF_YOUR_IMAGE";

const getImage = async (imageId) => {
    const getImageResponse = await fetch(
      `https://api.autoenhance.ai/v3/images/${imageId}`,
      { method: "GET" }
    );

    const image = await getOrderResponse.json();
}

The response after successfully fetching an image will contain all the details of your image.

Specification

Last updated