POST
/
v2
/
ai-content-detection
curl --request POST \
  --url https://api.gowinston.ai/v2/ai-content-detection \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "text": "<string>",
  "file": "<string>",
  "website": "<string>",
  "version": "<string>",
  "sentences": true,
  "language": "<string>"
}'
{
  "status": 123,
  "score": 123,
  "sentences": {
    "text": "<string>",
    "score": 123
  },
  "input": "<string>",
  "attack_detected": {
    "zero_width_space": true,
    "homoglyph_attack": true
  },
  "readability_score": 123,
  "credits_used": 123,
  "credits_remaining": 123,
  "version": "<string>",
  "language": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
The Ai content detection request V2

The body is of type object.

Response

200
application/json
Ai content detection response

The response is of type object.