Skip to main content

Detect AI-Generated Images

Veri is a powerful API for detecting AI-generated and manipulated images. Using state-of-the-art machine learning models, Veri can identify deepfakes, AI-generated faces, and synthetic media with high accuracy.

Get Started

Start detecting deepfakes in minutes with our SDKs.

Key Features

High Accuracy

Our veri_face model achieves industry-leading detection rates on AI-generated faces.

Fast Inference

Get results in under 200ms with our optimized SageMaker infrastructure.

Batch Processing

Process up to 100 images per batch for high-volume use cases.

Caching

Automatic result caching reduces costs and improves response times.

Quick Example

from veri import VeriClient

client = VeriClient(api_key="your-api-key")
result = client.detect(open("image.jpg", "rb"))

print(f"Is AI-generated: {result.is_fake}")
print(f"Confidence: {result.confidence:.1%}")

Next Steps