Retwinkle AI API
Integrate humanization into your own apps. Available on Pro and Enterprise plans.
Endpoint
POST https://retwinkle.com/api.php
Headers
Authorization: Bearer YOUR_EMAIL Content-Type: application/json
Request Body
{
"text": "Your AI-generated text here...",
"mode": "standard", // standard, academic, creative, professional
"level": 3 // 1-5 (humanness intensity)
}
Response
{
"success": true,
"output": "Humanized text...",
"word_count": 245,
"processing_time": 2.3,
"ai_score_before": 87,
"ai_score_after": 12
}
Example (cURL)
curl -X POST https://retwinkle.com/api.php \
-H "Authorization: Bearer your@email.com" \
-H "Content-Type: application/json" \
-d '{"text":"Your text here","mode":"standard","level":3}'
Rate Limits
| Plan | Monthly Words | Daily Words |
|---|---|---|
| Pro | 50,000 | 20,000 |
| Enterprise | Unlimited | Unlimited |