v1

latestOpenAPI 3.1.02026-07-2662954.6 KB
Reports 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

idstring uuid required

Unique identifier associated with the request

created_atstring date-time

Date and time of request processing

external_idstring nullable

The external identifier provided in the request, if any

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"
  }
}