v1

latestOpenAPI 3.0.0Apache 2.02026-08-0610023171.4 KB
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.

successboolean required

Example response

{
  "success": true,
  "data": {
    "words": 177,
    "pages": 1
  }
}