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

Humanize text

POST
https://api.semihuman.ai/humanize
Humanizer
Humanize text

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
aggressiveness
number 
optional
Aggressiveness level (0 to 100)
Default:
0
Example:
50
Example
{
    "text": "Example text to humanize",
    "aggressiveness": 0
}

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/humanize' \
--header 'x-humanizer-api-key;' \
--header 'Content-Type: application/json' \
--data-raw '{
    "text": "Example text to humanize",
    "aggressiveness": 0
}'

Responses

🟢200OK
application/json
Humanized text processing successful.
Body
shareToken
string 
required
A token that can be used to retrieve the humanized content
Example:
exampleToken123
humanizedContent
string  | null 
optional
The humanized content, if processing is successful
Example:
This is the processed humanized content.
status
string 
required
Status of the processing request
Example:
success
Example
{
    "shareToken": "exampleToken123",
    "humanizedContent": "This is the processed humanized content.",
    "status": "success"
}
🟠400Bad Request
🔴500Server Error
Previous
Semihuman API Documentation
Next
Check AI content
Built with