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/apiQuick 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
| Endpoint | Method | Description |
|---|---|---|
/api/detector/ | POST | Analyze text to detect AI-generated content |
/api/plagiarism/scan/ | POST | Scan text for plagiarism against web sources |
/api/grammar/correct/ | POST | Correct grammar, spelling, and punctuation |
/api/voice-detector/detect/ | POST | Detect AI-generated voices in audio |
/api/image-detector/predict/ | POST | Detect AI-generated images |
/api/jobs/{task_id}/ | GET | Check status of an async processing job |
Key Concepts
- Authentication — All requests require an
X-API-Keyheader. 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.