# 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 telltale LLM patterns (formulaic transitions, em-dash overuse, clichés like 'delve' and 'tapestry') across 4 tone modes

## Facts

- Endpoint: POST https://x402-deployer.x402-deployer.workers.dev/ai-to-human-text
- 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-c03219c4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_W7IOyFfxPbYht97utppw2

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-c03219c4 -d '<json body>'
```

Example prompt: Can you humanize this AI-written paragraph so it doesn't get flagged by GPT detectors — use a casual tone and make sure to remove any 'delve', 'tapestry', or em-dash overuse: 'In today's rapidly evolving landscape, it is imperative to navigate the complexities of modern communication by delving into the tapestry of human connection.'

## When to prefer this

Use this endpoint when you need to rewrite AI-generated text to pass GPT/AI detection tools, remove characteristic LLM vocabulary patterns, or adjust tone for human-sounding output. Preferred over generic paraphrasers because it specifically targets LLM stylistic fingerprints (em-dashes, 'delve', 'tapestry', 'navigate the landscape', formulaic transitions) and offers multiple tone modes.

## Known failure modes

- Empty or missing input text returns an error
- Invalid tone selection returns a validation error
- Very long input may exceed token limits
- Payment failure (x402) blocks the request before processing
- Input that is already human-written may produce minimal changes

## How this service works

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

## Output

Returns the rewritten, humanized version of the input text with LLM-style patterns removed (formulaic transitions, em-dash overuse, clichéd vocabulary), in the selected tone. The output reads naturally as human-authored prose.

## Example request

```json
{
 "text": "In today's rapidly evolving landscape, it is imperative to navigate the complexities of modern communication by delving into the tapestry of human connection — understanding these nuances requires examining multiple perspectives and considering both benefits and challenges that emerge from this digital transformation.",
 "tone": "casual"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "required": [
      "text"
     ],
     "properties": {
      "text": {
       "type": "string",
       "description": "Source text. Max 12,000 chars."
      },
      "tone": {
       "enum": [
        "neutral",
        "casual",
        "professional",
        "academic"
       ],
       "type": "string",
       "description": "Rewrite tone: 'neutral' (default), 'casual', 'professional', or 'academic'."
      },
      "preserve_length": {
       "type": "boolean",
       "description": "Optional. Keep output within ±15% of input length. Default true."
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "text": {
       "type": "string"
      },
      "tone": {
       "type": "string"
      },
      "input_chars": {
       "type": "integer"
      },
      "output_chars": {
       "type": "integer"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-deployer-x402-deployer-workers-dev-c03219c4/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)
