Humanize AI Reference (Beta) (0.9.0)

API for AI text humanization.

Download OpenAPI description
Languages
Servers
Mock server
https://docs.humanizeai.pro/_mock/openapi/
https://api.humanizeai.com/v1/

Humanization

Operations related to text humanization.

Operations

Humanization task

Request

Handles humanization tasks with validation, logging, and API key verification.

Headers
x-api-keystringrequired

API key for authentication.

Bodyapplication/jsonrequired
textstringrequired

Text input to be humanized.

Example: "This is an example of input text with more than 30 words."
curl -i -X POST \
  https://docs.humanizeai.pro/_mock/openapi/ \
  -H 'Content-Type: application/json' \
  -H 'x-api-key: string' \
  -d '{
    "text": "This is an example of input text with more than 30 words."
  }'

Responses

Humanization task started.

Bodyapplication/json
idstring

Unique ID for the humanization task.

Example: "api_b0dac615-b6fe-4f75-ae61-c927a0aef8b28207d78246ae2dac74973ef6f721c9b8"
Response
application/json
{ "id": "api_b0dac615-b6fe-4f75-ae61-c927a0aef8b28207d78246ae2dac74973ef6f721c9b8" }

Retrieve humanization result

Request

Get the result of a previously humanized text.

Query
idstringrequired

Unique ID of the humanization task.

Example: id=api_b0dac615-b6fe-4f75-ae61-c927a0aef8b28207d78246ae2dac74973ef6f721c9b8
Headers
x-api-keystringrequired

API key for authentication.

curl -i -X GET \
  'https://docs.humanizeai.pro/_mock/openapi/?id=api_b0dac615-b6fe-4f75-ae61-c927a0aef8b28207d78246ae2dac74973ef6f721c9b8' \
  -H 'x-api-key: string'

Responses

Humanization result retrieved successfully.

Bodyapplication/json
statusstring
Enum"success""processing""failed"
Example: "success"
inputstring

Original input text.

Example: "This is the input text."
outputstring

Humanized output text.

Example: "This is the humanized output text."
Response
application/json
{ "status": "success", "input": "This is the input text.", "output": "This is the humanized output text." }