
Detect if text was generated by AI models (GPT, Claude, etc.)
Detects AI-generated text (GPT, Claude, etc.) with chunking for long texts
textstringRequiredText content to check for AI generation
Your text to analyze here...AI-generated text detection with chunk-level analysis
is_humanbooleanTrue if text appears human-written
trueis_ai_generatedbooleanTrue if AI-generated text detected
falseai_probabilityfloatOverall probability that text is AI-generated (0.0-1.0)
0.12ai_probability_maxfloatHighest AI probability across all chunks
0.15chunk_countintegerNumber of chunks analyzed (400-token segments)
3chunksarrayPer-chunk analysis results
textstringChunk text content
startintegerStart position in original text
endintegerEnd position in original text
ai_probabilityfloatAI probability for this chunk
high_riskbooleanTrue if probability >= 0.8
{
"model": "ai-generated-text",
"content": "This is a sample text to analyze for AI generation."
}{
"success": true,
"data": {
"is_human": true,
"is_ai_generated": false,
"ai_probability": 0.12,
"ai_probability_max": 0.15,
"chunk_count": 1,
"chunks": [
{
"text": "This is a sample text to analyze for AI generation.",
"start": 0,
"end": 52,
"ai_probability": 0.12,
"high_risk": false
}
]
}
}429 HTTP error code along with an error message. You should then retry with an exponential back-off strategy, meaning that you should retry after 4 seconds, then 8 seconds, then 16 seconds, etc.Integrate AI-Generated Text Detection into your application today with our easy-to-use API.