Developer API · Available now

AI Image Detector API

Upload an image and receive a real, fake or inpainting verdict with confidence and per-class probabilities for review tools, publishing systems and content platforms.

  • JPEG, PNG, WebP + more
  • 10 MB maximum
  • Multipart upload
Lecture hall photograph shown inside an AI image inspection interface
Prediction REAL Confidence 99.64%
image/jpeg 1920 × 1080 8 credits

Three-class response

Read the verdict, confidence and class probabilities.

The response identifies the predicted class and returns its confidence alongside probabilities for real, fake and inpainting.

EXAMPLE RESPONSE · 200 OK · application/json
{
  "prediction": "real",
  "confidence": 0.9964,
  "probabilities": {
    "real": 0.9964,
    "fake": 0.0013,
    "inpainting": 0.0022
  },
  "credits_charged": 6
}
01 / real

Genuine image

No detected AI generation or editing.

02 / fake

Fully generated

Image is classified as AI-generated.

03 / inpainting

Partially edited

Authentic image with AI-edited regions.

Image request

Send one image and receive the full result.

Use an API key with the image detector scope and send the file as multipart form data. Store the verdict, confidence and class probabilities with your review record.

Open implementation details →
POST /api/image-detector/predict/
curl -X POST \
  https://developer-portal.proofademic.ai/
  api/image-detector/predict/ \
  -H "X-API-Key: YOUR_API_KEY" \
  -F "[email protected];type=image/jpeg"

multipart/form-data scope: image_detector
01 Authorize Create a scoped API key
02 Upload Send one image file
03 Route Read the verdict and probabilities
04 Monitor Track credits and rate limits

Operational details

Validate image files before upload.

Accept supported file types up to 10 MB, send the image as multipart form data and use the health endpoint to check service availability.

Input contract

Image upload

Formats
JPEG, PNG, WebP, GIF, BMP, TIFF
Maximum
10 MB per file
Body
multipart/form-data
Request parameters →
Response detail

Verdict plus probabilities

Each completed response returns a verdict, overall confidence and probabilities for every supported class.

Photo Real Generated Fake Edited Inpainting Output Confidence
Unauthenticated endpoint

Service health

GET /api/image-detector/health/
healthy Circuit closed · engine ready
Health response →

Use cases

Use AI image detection in content review.

API questions

Before your first request.

Research and guidance

Learn how to review AI image detection results.

View all articles →

Start building

Bring image detection into your workflow.

Create an API key, upload an image and receive the verdict, confidence and all three class probabilities.