Welcome to the Ithalab Humanize API. Our endpoints allow developers to programmatically optimize learning material, summarize documents, construct flashcards or quizzes, and bypass AI text detectors with state-of-the-art humanizing algorithms.
https://ithalab-humanize.app/apiThe Ithalab API authenticates requests using bearer tokens generated inside your Developer Dashboard. Authenticate all calls by including your API key in the Authorization HTTP header.
curl -X POST https://ithalab-humanize.app/api/tools \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"tool": "humanizer",
"text": "Artificial intelligence is expanding rapidly across industries.",
"options": {
"mode": "enhanced"
}
}'Convert standard AI-generated copy into highly humanized, engaging prose that passes leading AI detection platforms.
{
"success": true,
"result": "Machine intelligence is developing swiftly throughout diverse business sectors.",
"wordCount": 8,
"metrics": {
"aiProbability": 0.04,
"humanScore": 96,
"readability": "Excellent"
}
}Paraphrase or adapt text automatically with adjustable options for professional, academic, or informal styles.
curl -X POST https://ithalab-humanize.app/api/tools \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"tool": "rewriter",
"text": "The study found significant differences in outcomes.",
"options": {
"tone": "academic",
"length": "balanced"
}
}'{
"success": true,
"result": "The research revealed substantial variations in consequences.",
"wordCount": 8
}Quota controls protect platform infrastructure. API usage counts against the monthly word balance associated with your Pro or Unlimited plan subscription. If limits are reached, requests return an HTTP 402 Payment Required status.