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 and images. 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/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 — Text endpoints consume credits by word count (1 credit = 1 word); the Image Detector is priced by image resolution. See Credits.
- Sync & Async — The Detector supports both synchronous and asynchronous processing. See Async Jobs.