Get started with the wasitaigenerated API in minutes. All API requests require authentication using a Bearer token.
Get Your API Key
Your API key is available in your dashboard. Sign up to get 2,500 free credits to start testing the API immediately.
All API requests must include your API key in the Authorization header:
Authorization: Bearer YOUR_API_KEYDetect AI-generated text from ChatGPT, GPT-4, Claude, and other language models.
{
"content": "Your text content here..."
}curl -X POST https://www.wasitaigenerated.com/api/v1/detect/text \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"content": "Your text content here..."
}'{
"isAI": true,
"confidence": 0.92,
"patterns": ["AI patterns detected"],
"analysis": {
"likelihood": "AI-generated",
"reasoning": "Overall AI score: 92.3%"
},
"sentences": [
{
"text": "The sentence that was analyzed.",
"isAI": true,
"confidence": 0.95,
"scores": { "ai": 0.95, "human": 0.05 }
}
]
}Text detection costs 1 credit per word
Detect AI-generated images and synthetic media.
Send the image file as multipart/form-data with field name file
Supported formats: PNG, JPG, JPEG, GIF, WebP (max 10MB)
curl -X POST https://www.wasitaigenerated.com/api/v1/detect/image \
-H "Authorization: Bearer YOUR_API_KEY" \
-F "file=@/path/to/image.jpg"{
"isAI": true,
"confidence": 0.99,
"verified": true,
"patterns": ["ai_verified", "synthetic_artifacts"],
"analysis": {
"likelihood": "high",
"reasoning": "AI-generated imagery detected with 99.0% confidence. Verified AI-generated via content credentials."
},
"detailed": {
"scores": { "ai": 99.0, "human": 1.0 },
"model": "v1.1"
}
}verified — When true, the image is cryptographically verified as AI-generated (100% certain). When false, the score is based on model analysis.
confidence — AI detection confidence from 0 to 1.
detailed.scores — AI vs Human probability breakdown as percentages.
Image detection costs 1,000 credits per image
View our pricing page for credit packages and unlimited API subscriptions.
Need help or have questions about the API?