Enterprise API

DeepGuard API Documentation

Integrate AI content detection into your platform with a single REST API call. Batch process thousands of files, build real-time moderation pipelines, or add deepfake detection to any app.

Base URL

url
https://deepguard.org/api

Authentication

header
Authorization: Bearer YOUR_API_KEY

Endpoints

POST/api/detect/text

Analyze text for AI generation. Returns probability score, sentence-level breakdown, and likely source models.

Request Body

json
{
  "text": "Your text content here (50–10,000 characters)"
}

Response

json
{
  "riskScore": 87,
  "verdict": "ai_generated",
  "confidence": 94,
  "detectors": [
    { "name": "GPT/LLM Detector", "score": 91, "verdict": "Likely ChatGPT-4" },
    { "name": "Perplexity Analyzer", "score": 85, "verdict": "Low perplexity" },
    { "name": "Burstiness Detector", "score": 82, "verdict": "Uniform sentence length" },
    { "name": "Stylometric Analyzer", "score": 90, "verdict": "AI-typical phrasing" }
  ],
  "sentences": [
    { "text": "The quick brown fox...", "aiProbability": 92 }
  ],
  "possibleModels": ["ChatGPT-4", "Claude 3", "Gemini Pro"],
  "summary": "High probability of AI generation detected across all four models."
}

cURL Example

bash
curl -X POST https://deepguard.org/api/detect/text \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"text": "Your text content here"}'

Rate Limits & Pricing

PlanRequests/monthRate limitPrice
Free1005 req/min$0
Pro10,00060 req/min$49/mo
BusinessPopular100,000300 req/min$199/mo
EnterpriseUnlimitedCustomContact us

Common Use Cases

Social Media Platforms

Automatically flag AI-generated content before it goes viral. Integrate into your content moderation pipeline.

News & Media Verification

Verify authenticity of user-submitted photos, videos, and articles before publication.

Recruitment & HR

Detect AI-generated resumes, cover letters, and verify video interview authenticity.

Dating & Identity Apps

Verify profile photos and videos are real. Prevent catfishing and deepfake impersonation.

Ready to integrate?

Get your API key by signing up for a free account. No credit card required.