Developer API

Quick Start Guide: Integrating the Humanizer.gg REST API

T
By The Humanizer Team Updated Jul 11, 2026
8 min read Verified Guide

If you are building an application that needs to scale content generation, integrating our API lets you humanize hundreds of documents programmatically.

1. Authentication

Generate an API key in your Account settings. Pass the key in your request headers: Authorization: Bearer YOUR_API_KEY.

2. The Endpoint

Send a POST request to https://api.humanizer.gg/v1/humanize with a JSON body containing your input text and selected model options.

Code Example (Python)

import requests

response = requests.post(
    "https://api.humanizer.gg/v1/humanize",
    headers={"Authorization": "Bearer YOUR_API_KEY"},
    json={"text": "Your AI content...", "model": "enhanced"}
)
print(response.json()["humanized_text"])

Was this article helpful?

Let us know if this resolved your question.