# Bypass AI (writecream.com) โ€” Zapi reference > Humanize AI-generated text โ€” natural rewriting via writecream.com. **Base URL:** `https://api.zapi.ink` **Auth:** Send `x-api-key: YOUR_KEY` header on every request. Get a free key at https://zapi.ink/dashboard/keys. **Response envelope:** `{ content, message, errors }` **Rate limit:** 60 req/min on free tier. **Related:** - Detail page: https://zapi.ink/api/ai/bypass-ai - Endpoint catalog: https://zapi.ink/category/ai - Concise index: https://zapi.ink/llms.txt - Full reference: https://zapi.ink/llms-full.txt --- ## Bypass AI (writecream.com) **Category:** ai ยท **Slug:** `bypass-ai` **Detail page:** https://zapi.ink/api/ai/bypass-ai Humanize AI-generated text โ€” natural rewriting via writecream.com. **Tags:** ai, humanizer, writing ### Humanize Text - **Method:** `POST` - **Endpoint:** `https://api.zapi.ink/v1/ai:bypass-ai/humanize` - **Cache TTL:** 600s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `text` | string | body | yes | AI-generated text yang mau di-humanize. Min 1 char, max 10000 char. | **cURL:** ```bash curl -X POST "https://api.zapi.ink/v1/ai:bypass-ai/humanize" \ -H "x-api-key: YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "text": "Layanan ini menyediakan akses terpadu ke berbagai alat pengolahan data melalui satu antarmuka." }' ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zapi.ink/v1/ai:bypass-ai/humanize", { method: "POST", headers: { "x-api-key": process.env.ZAPI_KEY, "Content-Type": "application/json" }, body: JSON.stringify({ "text": "Layanan ini menyediakan akses terpadu ke berbagai alat pengolahan data melalui satu antarmuka." }) }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.post("https://api.zapi.ink/v1/ai:bypass-ai/humanize", headers={"x-api-key": "YOUR_API_KEY"}, json={ "text": "Layanan ini menyediakan akses terpadu ke berbagai alat pengolahan data melalui satu antarmuka." }) data = r.json() ``` **Example response:** ```json { "input": "The implementation of artificial intelligence systems necessitates a comprehensive evaluation of numerous critical factors, encompassing data quality, model architecture, and computational efficiency, in order to achieve optimal performance outcomes.", "output": "To get the best results from an AI system, you need to carefully check key things like the quality of your data, how the model is built, and how efficiently it runs.", "inputLength": 250, "outputLength": 165 } ``` --- _Generated: 2026-09-25T14:31:56.464Z_