# AI Text Humanizer / GPT Detector Bypass

> AI Text Humanizer / GPT Detector Bypass is a paid API for AI agents from x402-deployer.x402-deployer.workers.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Rewrites AI-generated text to remove LLM linguistic tells (em-dashes, 'delve', 'tapestry', formulaic transitions) across 4 selectable tones to evade GPT detectors.

## Facts

- Endpoint: POST https://x402-deployer.x402-deployer.workers.dev/humanize
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-deployer-x402-deployer-workers-dev-761e9259
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FO63wJa9BZ7FUqsbNlleX

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability x402-deployer-x402-deployer-workers-dev-761e9259 -d '<json body>'
```

Example prompt: Take this ChatGPT-written paragraph and humanize it with a casual tone so it won't get flagged by AI detectors — it keeps using 'delve' and em-dashes everywhere: 'In today's rapidly evolving landscape, it is essential to delve into the tapestry of modern challenges — each one more nuanced than the last.'

## When to prefer this

Use this endpoint when you need to rewrite AI-generated text to pass GPT/AI detector tools, or when the output of an LLM contains obvious tells like overuse of em-dashes, 'delve', 'tapestry', or formulaic academic transitions. Choose this over generic paraphrasers because it specifically targets LLM linguistic fingerprints and offers multiple tone modes.

## Known failure modes

- Empty or missing text body returns 400 error
- Unsupported tone value returns validation error
- Payment not received results in 402 Payment Required
- Text too long may exceed processing limits
- Rate limiting if too many requests sent quickly

## How this service works

AI text humanizer / GPT detector bypass. Strips LLM tells (em-dash overuse, formulaic transitions, 'delve', 'tapestry'). 4 tones.

## Output

Returns the rewritten, humanized version of the submitted text with LLM-characteristic phrases, punctuation patterns, and formulaic transitions removed, adjusted to the requested tone (one of 4 available options).

## Example request

```json
{
 "text": "In today's rapidly evolving landscape, it is essential to delve into the tapestry of modern challenges — each one more nuanced than the last. We must explore the intricate dynamics at play and carefully consider the multifaceted implications.",
 "tone": "casual"
}
```

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "properties": {
      "text": {
       "type": "string",
       "description": "AI-sounding text to rewrite in a natural human style. Max 12k chars."
      },
      "tone": {
       "type": "string",
       "description": "Target tone: neutral, casual, professional, or academic. Optional, default neutral."
      },
      "preserve_length": {
       "type": "boolean",
       "description": "Keep output within ±15% of input length. Optional, default true."
      }
     },
     "required": [
      "text"
     ]
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "text": {
       "type": "string"
      }
     }
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-deployer-x402-deployer-workers-dev-761e9259/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-deployer.x402-deployer.workers.dev](https://www.zero.xyz/host/x402-deployer.x402-deployer.workers.dev/llms.txt)
