# Inkbox AI Content Studio — Clean Text

> Inkbox AI Content Studio — Clean Text is a paid API for AI agents from inkonbox.netlify.app, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Cleans and sanitizes written text content using AI, removing noise, formatting artifacts, or unwanted elements.

## Facts

- Endpoint: POST https://inkonbox.netlify.app/api/clean
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/inkbox-ai-content-studio-clean-text-eb77ad32
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DP0hzDk3Dvt3LUbjaTWpu

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 inkbox-ai-content-studio-clean-text-eb77ad32 -d '<json body>'
```

Example prompt: Can you clean up this text for me — it's got weird symbols, extra whitespace, and formatting junk from a copy-paste: 'Hello!!   

Welcome   to  our   site!!!   <br> Click here...'

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call AI-powered text cleaning step without managing your own pipeline — especially useful for removing copy-paste artifacts, HTML remnants, encoding issues, or formatting noise from user-submitted or scraped content before downstream processing or publishing.

## Known failure modes

- Missing required 'text' field returns validation error
- Empty string input may return error or pass-through unchanged
- Very long text may hit payload or processing limits
- Payment failure returns 402 if USDC balance is insufficient
- Service unavailable on Netlify free-tier cold start delays

## How this service works

Draft, rewrite, translate, and optimize written content. 25 AI-powered endpoints. Pay-per-call with USDC on Base.

## Output

A JSON object with a success boolean and a data object containing the cleaned, sanitized version of the submitted text with formatting artifacts, noise, and unwanted characters removed.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text"
 ],
 "properties": {
  "text": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/inkbox-ai-content-studio-clean-text-eb77ad32/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from inkonbox.netlify.app](https://www.zero.xyz/host/inkonbox.netlify.app/llms.txt)
