v1
latestOpenAPI 3.1.02026-07-2662954.6 KBReports by Modality
Text
Analyze text to determine if it was generated by AI.
This endpoint analyzes text content and returns confidence scores for AI detection.
Text Processing Limits:
- Minimum Text Length: 250 characters
- Maximum Text Length: 500,000 characters (500KB)
- Minimum Words: Approximately 64 words
post/v2/text/sync
Query parameters
external_idstring nullable
An optional external identifier for tracking this text analysis
include_annotationsboolean
Include block-level AI detection annotations in the response
Response
Successful Response
Example response
{
"report": {
"ai_text": {
"confidence": 0.95,
"annotations": [
[
"This is the first block of text.",
0.9999
],
[
"This is the second block of text.",
0.0012
]
]
}
},
"metadata": {
"word_count": 150,
"character_count": 750,
"token_count": 200,
"md5": "ebe5836f4d7dddc3f9a957eff565be21"
}
}