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();
}image_id = "ID_OF_YOUR_IMAGE";
def get_image(image_id):
url = f"https://api.autoenhance.ai/v3/images/{image_id}"
response = requests.get(url)
response_data = response.json()
return response_data$image_id = "ID_OF_YOUR_IMAGE";
function get_image($image_id) {
$url = "https://api.autoenhance.ai/v3/images/$image_id";
$options = array(
'http' => array(
'method' => 'GET',
),
);
$context = stream_context_create($options);
$result = file_get_contents($url, false, $context);
if ($result === FALSE) {
return 'Error getting image';
}
$image = json_decode($result, true);
return $image;
}
curl -X GET \
https://api.autoenhance.ai/v3/images/ID_OF_YOUR_IMAGE \
-H 'Content-Type: application/json'The response after successfully fetching an image will contain all the details of your image.
Specification
Path parameters
idstringRequired
Responses
200
Successful response
application/json
404
Not found
application/json
get
/v3/images/{id}GET /v3/images/{id} HTTP/1.1
Host: api.autoenhance.ai
Accept: */*
{
"ai_version": "text",
"cloud_type": "CLEAR",
"date_added": 1,
"downloaded": true,
"enhance": true,
"enhance_type": "property",
"finetune_settings": {},
"image_id": "123e4567-e89b-12d3-a456-426614174000",
"image_name": "text",
"lens_correction": true,
"metadata": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"order_id": null,
"preset_id": null,
"privacy": true,
"rating": 1,
"scene": "text",
"sky_replacement": true,
"status": null,
"status_reason": null,
"upscale": true,
"user_id": null,
"vertical_correction": true,
"window_pull_type": "NONE",
"ANY_ADDITIONAL_PROPERTY": "anything"
}Last updated