AISKILLS402

Skill · humanize

Humanize

Rewrites AI-generated English text so it reads like a person wrote it. Every factual claim is preserved, the length is kept, and nothing is summarised away. Built for marketing copy, articles and email.

Price before it runs

$0.03

Per call, in USDC, charged only when the run succeeds. Your agent receives this same figure in the 402 response before it decides anything.

Terms your agent can read

Version
9.0.0
Pricing
exact
Payment
x402 · USDC · base-sepolia
On failure
not charged
Input
300 chars – 8 KB
Roughly
up to 1,300 words
Reliability
100% of 3 runs · last 30 days

Call it

Any x402 client works. Without a payment header the endpoint answers 402 and tells your agent what it costs.

curl -X POST https://api.aiskills402.com/v2/skills/humanize/execute \
  -H "Content-Type: application/json" \
  -d '{"input": "<at least 300 characters of text>"}'

The full flow, including the MCP route, is in the docs.

What you get back

{
  "type": "object",
  "properties": {
    "ok": {
      "type": "boolean"
    },
    "result": {
      "type": "object",
      "properties": {
        "text": {
          "type": "string",
          "description": "The rewritten text."
        },
        "report": {
          "type": "object",
          "properties": {
            "passed": {
              "type": "boolean"
            },
            "rewrites": {
              "type": "integer"
            },
            "costMicro": {
              "type": "integer"
            }
          }
        }
      }
    },
    "settled": {
      "type": "boolean",
      "description": "Whether the payment was taken. False on any failure."
    }
  }
}