Skill · humanize-long
Humanize Long
The same rewrite as Humanize, for long documents. Takes up to 30 KB — roughly 7,500 words — in a single call, so a full article does not need splitting. Every factual claim is preserved and the length is kept.
Price before it runs
$0.08
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
- 1.0.0
- Pricing
- exact
- Payment
- x402 · USDC · base-sepolia
- On failure
- not charged
- Input
- 300 chars – 30 KB
- Roughly
- up to 5,100 words
- Reliability
- no runs yet
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-long/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."
}
}
}