Quick Start Guide

Get started with AuthenticImage.site in under 5 minutes.

1. Get Your API Key

Sign up for a free account and get your API key from the dashboard.

2. Make Your First Request

curl -X POST "https://api.authenticimage.site/v1/detect" \
  -F "file=@image.jpg"

3. Parse the Response

{
  "is_ai_generated": true,
  "confidence": 0.973,
  "model_detected": "midjourney_v5",
  "signals": [
    { "label": "frequency_analysis", "score": 0.89 },
    { "label": "metadata_consistency", "score": 0.95 }
  ]
}

Pro tip: Use the interactive demo to test the API without writing any code.