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...",
"options": {
"detailed": true // Optional, default: true
}
}curl -X POST https://wasitaigenerated.com/api/v1/detect/text \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"content": "Your text content here..."
}'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://wasitaigenerated.com/api/v1/detect/image \
-H "Authorization: Bearer YOUR_API_KEY" \
-F "file=@/path/to/image.jpg"Image detection costs 1,000 credits per image
All successful detection requests return a JSON response with the following structure:
{
"success": true,
"type": "text",
"result": {
"isAiGenerated": true,
"confidence": 0.92,
"details": {
// Additional detection details
},
"model": "detector-v1",
"processingTime": "1.2s"
}
}Need help or have questions about the API?