# Bypass AI (writecream.com) โ€” Zapi reference > Humanize AI-generated text โ€” natural rewriting via writecream.com. **Base URL:** `https://api.zpi.web.id` **Auth:** Send `x-api-key: YOUR_KEY` header on every request. Get a free key at https://zpi.web.id/dashboard/keys. **Response envelope:** `{ status, message, content }` **Rate limit:** 60 req/min on free tier. **Related:** - Detail page: https://zpi.web.id/api/ai/bypass-ai - Endpoint catalog: https://zpi.web.id/category/ai - Concise index: https://zpi.web.id/llms.txt - Full reference: https://zpi.web.id/llms-full.txt --- ## Bypass AI (writecream.com) **Category:** ai ยท **Slug:** `bypass-ai` **Detail page:** https://zpi.web.id/api/ai/bypass-ai Humanize AI-generated text โ€” natural rewriting via writecream.com. **Tags:** ai, humanizer, writing ### Humanize Text - **Method:** `POST` - **Endpoint:** `https://api.zpi.web.id/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.zpi.web.id/v1/ai:bypass-ai/humanize" \ -H "x-api-key: YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "text": "Zapi adalah platform Public REST API yang menyediakan akses ke berbagai layanan scraping dan AI tools secara terpadu." }' ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/ai:bypass-ai/humanize", { method: "POST", headers: { "x-api-key": process.env.ZAPI_KEY, "Content-Type": "application/json" }, body: JSON.stringify({ "text": "Zapi adalah platform Public REST API yang menyediakan akses ke berbagai layanan scraping dan AI tools secara terpadu." }) }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.post("https://api.zpi.web.id/v1/ai:bypass-ai/humanize", headers={"x-api-key": "YOUR_API_KEY"}, json={ "text": "Zapi adalah platform Public REST API yang menyediakan akses ke berbagai layanan scraping dan AI tools secara terpadu." }) 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-08-02T14:28:47.204Z_