Check AI content
POST
/check-ai
Humanizer
Request
Header Params
x-humanizer-api-key
string
required
Body Params application/json
text
string
required
Example:
Example text to humanize
Example
{
"text": "Example text to humanize"
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.semihuman.ai/check-ai' \
--header 'x-humanizer-api-key;' \
--header 'Content-Type: application/json' \
--data-raw '{
"text": "Example text to humanize"
}'
Responses
🟢200OK
application/json
Body
message
string
required
Example:
Detection complete
classification
string
required
Example:
AI
confidence
number
required
Example:
100
resultMessage
string
required
Example:
Your text is likely to be written entirely by AI
Example
{
"message": "Detection complete",
"classification": "AI",
"confidence": 100,
"resultMessage": "Your text is likely to be written entirely by AI"
}
🟠400Bad Request
🔴500Server Error