FAPIhub
  • Welcome
  • Getting Started
    • Introduction
  • APIs
    • AI Background Remover API
    • AI Picture Upscaler API
Powered by GitBook
On this page
  • AI Detector
  • Endpoint
  • Authentication
  • Form Data
  • Example Request
  • Response
  • AI Humanizer
  • Endpoint
  • Authentication
  • Form Data
  • Example Request
  • Response
  • Notes
  • Get Result
  • Endpoint
  • Authentication
  • Form Data
  • Example Request
  • Response
  1. APIs

AI Humanizer API

Make your AI- or ChatGPT-generated textundetectable with our effective AI bypasser. Bypass AI Detectors, Such as GPTzero, TurnitinCopyleaks, Originality AI, and More.

AI Detector

Endpoint

Url: https://fapihub.com/v2/humanizer/detector/ - Humanizing the content

Authentication

  • token: A valid API token is required to authenticate the request.

Form Data

Parameter
Type
Description

text

string

The text to be detected.

Example Request

curl -X POST "https://fapihub.com/v2/humanizer/detector/" \  
    -H "token: API_TOKEN" \  
    -F "text=Einstein was not just a brilliant scientist, but also a humanitarian who spoke out against nuclear weapons and advocated for global peace. He died on April 18, 1955, in Princeton, New Jersey, leaving an indelible mark on scientific and human history."

Response

  • Status Code: 200 OK

  • Content Type: application/json

Response Body:

{
   "success":true,
   "code":200,
   "data":{
      "isHuman":50,
      "textWords":41,
      "aiWords":0,
      "fakePercentage":0,
      "feedback":"Your Text contains mixed signals, with some parts generated by AI/GPT",
      "input_text":"Einstein was not just a brilliant scientist, but also a humanitarian who spoke out against nuclear weapons and advocated for global peace. He died on April 18, 1955, in Princeton, New Jersey, leaving an indelible mark on scientific and human history.",
      "detected_language":"en"
   }
}

AI Humanizer

Endpoint

Url: https://fapihub.com/v2/humanizer/ - Humanizing the content

Authentication

  • token: A valid API token is required to authenticate the request.

Form Data

Parameter
Type
Description

text

string

The text to be humanized.

readilibty

string

The desired readability level of the text. This field could BASIC, ENHANCED or AGGRESSIVE

mode

string

The humanization mode to be applied. This field could be Standard, University, Journalist, Doctorate or Marketing

Example Request

curl -X POST "https://fapihub.com/v2/humanizer/" \
  -H "token: API_TOKEN" \
  -F "text=Einstein was not just a brilliant scientist, but also a humanitarian who spoke out against nuclear weapons and advocated for global peace. He died on April 18, 1955, in Princeton, New Jersey, leaving an indelible mark on scientific and human history." \
  -F "readilibty=Standard" \
  -F "mode=ENHANCED"

Response

  • Status Code: 200 OK

  • Content Type: application/json

Response Body:

{
    "request_id": "REQUEST_ID",
}

Fields:

  • request_id: The id which will be needed to get the final result

Notes

  • The text parameter should be a block of text to be humanized.

Get Result

Endpoint

Url: https://fapihub.com/v2/humanizer/result/ - Humanizing the content

Authentication

  • token: A valid API token is required to authenticate the request.

Form Data

Parameter
Type
Description

request_id

string

The request id which you can get from humanizer/ endpoint

Example Request

curl -X POST "https://fapihub.com/v2/humanizer/result/" \
  -H "token: API_TOKEN" \
  -F "request_id=REQUEST_ID"

Response

  • Status Code: 200 OK

  • Content Type: application/json

Response Body:

{
    "message": "The brightest scientist of our times, though a brilliant scientist in a sense, also came to be called a humanitarian for his vehement opposition against nuclear weapons and for global peace. He passed on the 18th of April, 1955, leaving an imprint on the very pages of scientific and human history, in Princeton, New Jersey.",
}

Fields:

  • message: The humanized version of the input text.

Last updated 3 months ago