Proofademic APIProofademic API

Getting Started

Integrate Proofademic AI detection into your applications via a simple REST API.

Overview

The Proofademic API lets you programmatically detect AI-generated content in text, images, and voice recordings, scan text for plagiarism, and correct grammar. All endpoints are available over HTTPS and return JSON responses.

Base URL:

https://developer-portal.proofademic.ai/api

Quick Start

1. Get Your API Key

Sign in to the Developer Portal and create an API key on the API Keys page.

The full API key is only shown once at creation. Copy and store it securely.

2. Make Your First Request

curl -X POST https://developer-portal.proofademic.ai/api/detector/ \
  -H "Content-Type: application/json" \
  -H "X-API-Key: YOUR_API_KEY" \
  -d '{
    "content": "Artificial intelligence has revolutionized numerous industries by automating complex tasks and enhancing decision-making processes."
  }'

3. Get the Result

{
  "status": "success",
  "result": "ai",
  "ai_score": 0.87,
  "items": [
    {
      "text": "Artificial intelligence has revolutionized numerous industries by automating complex tasks and enhancing decision-making processes.",
      "prediction": "ai-generated",
      "ai_score": 0.87
    }
  ],
  "execution_time": 1.52,
  "word_count": 18,
  "credits_remaining": 1982,
  "message": "Text has been successfully checked",
  "user": {
    "id": 12345
  }
}

Available Endpoints

EndpointMethodDescription
/api/detector/POSTAnalyze text to detect AI-generated content
/api/plagiarism/scan/POSTScan text for plagiarism against web sources
/api/grammar/correct/POSTCorrect grammar, spelling, and punctuation
/api/voice-detector/detect/POSTDetect AI-generated voices in audio
/api/image-detector/predict/POSTDetect AI-generated images
/api/jobs/{task_id}/GETCheck status of an async processing job

Key Concepts

  • Authentication — All requests require an X-API-Key header. See Authentication.
  • Credits — Most text endpoints consume credits by word count (1 credit = 1 word); the Plagiarism Checker costs a flat 2 credits per scan, the AI Voice Detector costs 10 credits per second of audio, and the Image Detector is priced by image resolution. See Credits.
  • Sync & Async — The Detector supports both synchronous and asynchronous processing (see Async Jobs); the Plagiarism, Grammar, and Voice endpoints are synchronous only.

On this page