1. end-points
  • Semihuman API Documentation
  • end-points
    • Humanize text
      POST
    • Check AI content
      POST
    • AI Video Detection
      POST
  1. end-points

Check AI content

POST
https://api.semihuman.ai/check-ai
Humanizer

Request

Header Params
x-humanizer-api-key
string 
required
Humanizer API Key
Body Params application/json
text
string 
required
Text to humanize
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
AI detection result.
Body
message
string 
required
Message summarizing the detection result
Example:
Detection complete
classification
string 
required
Classification of the text based on AI detection
Example:
AI
confidence
number 
required
Confidence level of the classification
Example:
100
resultMessage
string 
required
Detailed result message
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
Previous
Humanize text
Next
AI Video Detection
Built with