Download API POSTMAN Collection
The Humanizer API is a comprehensive solution designed to enhance content creation and management with advanced paraphrasing, summarization, and text optimization capabilities. It empowers developers to seamlessly integrate diverse text-enhancement tools into their applications, catering to a variety of writing styles and requirements.
Key Features:
BASE URL
https://www.humanizeaitext.co/api
All API's End Points
- GET - {base_url}/plan/details
- GET - {base_url}/usage/details
- POST -{base_url}/paraphrase
- POST -{base_url}/humanize
- POST -{base_url}/summarizer
- POST -{base_url}/plagiarism-remover
- POST -{base_url}/article-rewriter
- POST -{base_url}/grammar-checker
Every user is assigned a unique API key upon registration. This API key is required for authenticating requests to the Humanizer API. Requests that do not include a valid API key will return a 401 , 403 Forbidden error, preventing access to the API's features.
Your API Key
create_your_key
Header Parameter
['x-api-key: create_your_api_key']
The Humanizer API returns consistent responses to indicate the success or failure of each request. The response will include specific codes and messages to make it easy to understand the request’s status.
Possible Enum Values
Success :
success, response, data, message, status=true
Error :
error , api_error, exception, error_message, status=false
HTTP Status Code Summary
200
OK
400
Bad Request
401
Unauthorized
403
Forbidden
404
Not Found
429
Too Many Requests
500
Server Errors
This endpoint returns details of the user's subscribed plan, including the total and available API credits, along with the renewal date and amount.
Header:
Response:
The API responds with a JSON object containing the subscribed plan, credit & renew details.Response Parameters:
Plan Detail URL
- GET - {base_url}/plan/details
HTTP Request Header
['x-api-key: create_your_api_key']
Response
{
"status": 200,
"message": "Subscribed plan detail with usage",
"plan_detail": {
"subscribed_plan_id": "sub_1QHghE2KSqiTg9wqwanQX1gS",
"plan_name": "yearly",
"total_api_credit": "500000",
"total_api_credit_in_k": "500k",
"available_api_credit": "492194",
"available_api_credit_in_k": "492k",
"renew_at": "11-05-2025",
"renew_amount": "$350"
}
}
The Usage Detail API provides detailed insights into the usage of credits, including overall credit consumption and individual API usage logs. This API is useful for monitoring credit consumption and analyzing usage patterns.
Header:
Response:
The API responds with a JSON object containing the total credit details and a breakdown of usage activities.Response Parameters:
Usage Detail URL
- GET - {base_url}/usage/details
HTTP Request Header
['x-api-key: create_your_api_key']
Response
{
"status": 200,
"message": "Usage detail with api credits.",
"total_credit": "500,000",
"total_used_credit": "8,135",
"usage_detail": [
{
"ip_address": "127.0.0.1",
"browser": "null",
"origin": "null",
"api_mode": "humanize",
"input_txt": "The Beginning of Ranjha's Journey\n\nRanjha, whose full name was Dheedo Ranjha, was the youngest of four brothers born into a well-to-do family in the village of Takht Hazara, on the banks of the Chenab River. Unlike his elder brothers, who were more inclin",
"output_txt": "The Beginning of Ranjha's Journey.\n\n Dheedo Ranjha, the youngest of four brothers, was born into a wealthy family in the village of Takht Hazara by the Chenab River. Unlike his older siblings, who preferred agriculture and estate management, Ranjha was",
"api_credit": "954"
"created_at": "2024-11-08 06:12:03",
},
{
"ip_address": "127.0.0.1",
"browser": "null",
"origin": "null",
"api_mode": "summarizer",
"input_txt": "The Beginning of Ranjha's Journey\n\nRanjha, whose full name was Dheedo Ranjha, was the youngest of four brothers born into a well-to-do family in the village of Takht Hazara, on the banks of the Chenab River. Unlike his elder brothers, who were more inclin",
"output_txt": "The Beginning of Ranjha's Journey.\n\n Dheedo Ranjha, the youngest of four brothers, was born into a wealthy family in the village of Takht Hazara by the Chenab River. Unlike his older siblings, who preferred agriculture and estate management, Ranjha was",
"api_credit": "954"
"created_at": "2024-11-08 06:12:03",
},
]
}
The Humanize API is designed to make text sound more natural and relatable by adjusting the tone and phrasing. This endpoint is especially useful for creating content that connects with audiences on a more personal level. It transforms overly formal or robotic text into language that feels conversational and human-friendly.
Request:
Response:
The API responds with a JSON object containing the humanized version of the text, both with and without HTML <span></span>
tags, as well as information about the transformation process.
Response Parameters:
<span></span>
tags around specific words that were modified or emphasized. Humanize URL
- POST - {base_url}/humanize
HTTP Request Header
['x-api-key: create_your_api_key']
HTTP Request Body
[
"input_content" => "In today’s fast-paced digital world, it’s crucial for businesses to stay connected with their customers in a personalized way. As technology evolves, so do the expectations of consumers who now seek not only convenience but also meaningful engagement.",
"lang" => "en"
]
Response
{
"status": 200,
"message": "Content humanized successfully",
"blog_text": "<span>Today's</span> <span>swiftly</span> <span>evolving</span> <span>tech</span> <span>environment</span> <span>necessitates</span> <span>companies</span> to <span>maintain</span> <span>individualized</span> <span>connections</span> with their <span>clientele.</span> As <span>tech</span> <span>advances,</span> <span>consumer</span> <span>demands</span> <span>shift</span> <span>towards</span> not <span>just</span> <span>ease</span> but also <span>significant</span> <span>involvement.</span>",
"blog_plain_text": " Today's swiftly evolving tech environment necessitates companies to maintain individualized connections with their clientele. As tech advances, consumer demands shift towards not just ease but also significant involvement.",
"percentage": 87.9310,
"input_word_count": 40,
"output_word_count": 28
}