API REFERENCE · v1

One endpoint. One JSON response.

Send an image. Get a forensic verdict back in under 350ms. Full API reference is being assembled — preview the contract below.

cURL
Python
Node
# POST an image to /detect
curl -X POST https://api.deepscan.example/v1/detect \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -F "file=@./suspicious.jpg"
RESPONSE — 200 OK
{
  "verdict": "AI_GENERATED",
  "confidence": 0.974,
  "latency_ms": 312,
  "signals": ["fft_artifact", "dire_high", "no_exif"],
  "detector_scores": {
    "fft": 0.871,
    "vit": 0.943,
    "dire": 0.892,
    "clip": 0.755,
    "srm": 0.612,
    "face": -1.0,        // no face detected
    "exif": 1.000
  },
  "meta_classifier_used": true
}

Full API reference — coming soon

Authentication, rate limits, webhook delivery, batch endpoints, error codes, SDKs for Python / Node / Go. Sign up for the free tier to get an API key the moment v1 ships.

Get Early Access →