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

Request

Header Params

Body Params application/json

Example
{
    "text": "Example text to humanize"
}

Request Code 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

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