$ man ai-to-human-text
/ai-to-human-text(1)
NAME
ai-to-human-text — ai text humanizer / gpt detector bypass
SYNOPSIS
POST https://x402.org/v1/ai-to-human-text
Content-Type: application/json
X-PAYMENT: <signed-transferWithAuthorization>
{ ... }↳ first call →
402 Payment Required. Sign USDCtransferWithAuthorization, retry with theX-PAYMENT header.DESCRIPTION
AI text humanizer / GPT detector bypass. Strips telltale LLM patterns (formulaic transitions, em-dash overuse, 'delve' / 'tapestry' / 'navigate the landscape'). 4 tones.
INPUT — request schema
| property | type | description | req? |
|---|---|---|---|
| text | string | Source text to humanize. Max 12,000 characters. | required |
| tone | string | 'neutral' (default), 'casual', 'professional', or 'academic'. enum: neutral · casual · professional · academic | optional |
| preserve_length | boolean | If true (default), keep within ±15% of source length. If false, tighten freely. | optional |
OUTPUT — response shape
| field | type | description |
|---|---|---|
| text | string | Rewritten text. |
| tone | string | Tone applied. |
| input_chars | number | Source character count. |
| output_chars | number | Rewritten character count. |
| model | string | Model used for the rewrite. |
EXAMPLES — two ways to call
EXAMPLE 1 · curl
curl -X POST https://x402.org/v1/ai-to-human-text \
-H 'Content-Type: application/json' \
-d '{ }'first response =
402 Payment Required with payment requirements; sign + retry with X-PAYMENT.EXAMPLE 2 · mcp
# install once claude mcp add x402 --command "npx x402-deployer-mcp" # then ask Claude Code: # "use the ai-to-human-text tool to ..."
MCP server handles payment automatically — your coding agent just calls the tool by name.
METADATA
- tags
- humanizerewriterai-detectionparaphrasetext
- env
- VENICE_API_KEY
- methods
- POST
- cluster
- wordmint
- price
- $0.01 USDC per call
ADJACENT — other endpoints in wordmint
| endpoint | description | price |
|---|---|---|
| citation-verify | Citation verifier / fact-check against URL / does-this-source-support-this-claim / hallucination detector. | $0.01 |
| commit-message-from-diff | Git commit message generator / Conventional Commits / AI commit-msg. | $0.01 |
| humanize | AI text humanizer / GPT detector bypass. | $0.01 |
| regex-from-prompt | Regex generator / NL to regex / pattern builder. | $0.01 |
| sentiment | Sentiment + emotion analyzer. | $0.01 |
| sentiment-analysis | Sentiment analyzer / emotion classifier / aspect-based sentiment. | $0.01 |
| structured-extract | Structured-data extractor / JSON-from-text / schema-guided extraction / key-value pull / form-filler. | $0.01 |
| summarize | AI summarizer / TLDR generator. | $0.01 |
SEE ALSO