For the complete documentation index, see llms.txt. This page is also available as Markdown.

Reporting

Your feedback is extremely valuable to us, so please don't hesitate to share your thoughts!

This API endpoint allows you to report and review images. To report an image, you must provide the image_id , score, categories, and a valid API key.

Before you continue You can find the list of report categories in the API specification. Additionally, there's an optional comment property where you can provide any feedback.

const imageId = "ID_OF_YOUR_IMAGE";
const apiKey = "YOUR_API_KEY";
const score = 4;
const categories = ["LENS_CORRECTION","AUTO_PRIVACY"]

const reportImage = async (imageId, apiKey, score, categories) => {
    const reportImageResponse = await fetch(
      `https://api.autoenhance.ai/v3/images/${imageId}/report`,
      { 
        method: "POST" 
        headers:{
          "x-api-key": apiKey,  
        },
        body: JSON.stringify({
          score: score,
          categories: categories
        }),
      }
    );
}
import requests
import json

image_id = "ID_OF_YOUR_IMAGE"
api_key = "YOUR_API_KEY"
score = 4
categories = ["LENS_CORRECTION", "AUTO_PRIVACY"]

def report_image(image_id, api_key, score, categories):
    url = f"https://api.autoenhance.ai/v3/images/{image_id}/report"
    headers = {
        "x-api-key": api_key,
        "Content-Type": "application/json"
    }
    data = {
        "score": score,
        "categories": categories
    }

    response = requests.post(url, headers=headers, data=json.dumps(data))
    return response

Specification

Report Image

post
Authorizations
x-api-keystringRequired
Path parameters
idstringRequired
Body
commentstringOptional

A comment to be sent along with the report.

scoreinteger · max: 5Optional

A rating between 0 and 5 on how good the image enhancmeent. Higher is better.

sourcestring · enumOptionalPossible values:
Responses
200

Successful response

application/json
anyOptional
post/v3/images/{id}/report
POST /v3/images/{id}/report HTTP/1.1
Host: api:8080
x-api-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 76

{
  "categories": [
    "AUTO_PRIVACY"
  ],
  "comment": "text",
  "score": 1,
  "source": "WEBAPP"
}

No content

Last updated

Was this helpful?