AI Detection
Validate text for AI detection
Validate text or a supported file before creating an AI detection check. The endpoint parses the submitted content, applies the same pre-check validation rules and configured length limits as POST /api/v1/chat-gpt/, and returns the calculated size in words and pages.
This endpoint does not create a report, queue a check, save an original file, or charge the account.
post/api/v1/chat-gpt/validate/
Response
The AI detection check request is valid enough to submit for checking.
Example response
{
"success": true,
"data": {
"words": 177,
"pages": 1
}
}